% !TeX encoding = UTF-8
% 载入 CSUThesis 模版
\documentclass[type=bachelor, oneside]{csuthesis}
% 选项
% type=[doctor|master|bachelor|course], % 可选(默认:doctor),论文类型
% zihao=[-4|5], % 可选(默认:-4),正文字号大小
% language=[chinese|english], % 可选(默认:chinese),论文的主要语言
% review, % 可选(默认:关闭),盲审模式
% [twoside|oneside] % 可选(默认:twoside),单双页模式
% 论文基本配置,加载宏包等全局配置
\input{setup}
\begin{document}
%TC:ignore
% 无编号内容
% 论文标题页
\maketitle
% 原创性声明、版权授权页
% \originalitypage*
% \copyrightpage[scans/copyright.pdf]
% 使用罗马数字对前文编号
\frontmatter
% 摘要
\include{contents/abstract}
% 目录、插图索引、表格索引、算法索引
\tableofcontents
\listoffigures*
\listoftables*
\listofalgorithms*
% 主要符号对照表
\include{contents/nomenclature}
%TC:endignore
% 使用阿拉伯数字对正文编号
\mainmatter
% 正文内容
\include{contents/intro}
\include{contents/floats}
\include{contents/math_and_citations}
\include{contents/summary}
%TC:ignore
% 使用英文字母对附录编号
\appendix
% 附录内容
\include{contents/app_maxwell_equations}
\include{contents/app_flow_chart}
% 后文部分无编号
\backmatter
% 参考文献
\nocite{*}
\printbibliography[heading=bibintoc]
% 用于盲审的论文需隐去致谢、发表论文、科研成果、简历
% 致谢
\include{contents/acknowledgements}
% 发表论文、科研成果、简历
% 盲审论文中,发表论文及科研成果等仅以第几作者注明即可,不要出现作者或他人姓名
\include{contents/publications}
\include{contents/achievements}
\include{contents/resume}
% 中文学士学位论文一般要求在最后有一个英文大摘要,单独编页码,英文学士学位论文不需要
\include{contents/english_digest}
%TC:endignore
\end{document}