%-------------------------------------------------
% FileName: main.tex
% Author: Safin (zhaoqid@zsc.edu.cn)
% Version: 0.1
% Date: 2020-05-12
% Description: 主文档,包含其它tex文档
%     如果要增加新的章节,请先到 tex目录增加文件,再input
%     如果附录没有内容,就注释掉
% Others: 编译方法参考 make.sh
%         适配TeXLive2020
%         必须用 [UTF-8无BOM] 编码
% History: origin
%-------------------------------------------------
\documentclass{style/zscthesis} % 自定义thesis
% 在正式撰写论文之前,请移步
% https://gitee.com/yeyunxiaopan/zsc-cs-latex-thesis
% 把模板的使用教程简单浏览一下
% 也可以对照B站视频一起看
% https://www.bilibili.com/video/av328559652
% Latex模板撰写的论文最终输出成PDF文档,当然不可能和Word一模一样。
% 如果觉得表格编辑有点麻烦,可以使用[在线工具](https://www.tablesgenerator.com/)。
% 如果图片导致文中有大段空白,可以通过调整文字和图片的位置,以及设置正确的浮动方式,来抑制文中的大段空白。
% 切记,参考文献,一定要在文中引用,才能出现在最后的参考文献章节。
% 切记,图片和表格一定要在文中引用,千万不能写,如下图,如下表。
% 根据教务处2024年规定,封面由维普系统生成,可以在论文中将其注释掉
\begin{document} 
    \input{tex/frontinfo.tex}       % 封面,如不需要可以注释掉
    \input{tex/abstract-ch.tex}     % 中文摘要
    \input{tex/abstract-en.tex}     % 英文摘要
    \input{tex/content.tex}         % 目录 (如无需要,不用修改)
    \input{tex/chap-1.tex}          % 第1章
    \input{tex/chap-2.tex}
    \input{tex/chap-3.tex}          % 增加新章节到tex目录,此处input
    \input{tex/chap-4.tex} 
    \input{tex/chap-5.tex}
    \input{tex/chap-6.tex}          % 第6章
    \input{tex/reference.tex}       % 参考文献 (修改bib/ref.bib)
    \input{tex/acknowledgement.tex} % 致谢
    \input{tex/appendix.tex}        % 附录 (无内容请注释掉) 
\end{document}