forked from ustctug/ustcthesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
56 lines (44 loc) · 1.27 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
% !TeX encoding = UTF-8
% !TeX program = xelatex
% !TeX spellcheck = en_US
\documentclass[degree=doctor]{ustcthesis}
% degree = doctor|master|bachelor
% language = chinese|english
% 加载宏包、全部的配置
\input{ustcsetup.tex}
\begin{document}
% 研究生论文:
% 封面,原创性声明和授权使用声明
% frontmatter: 摘要,目录,[图、表清单],[符号说明]
% mainmatter: 正文章节,参考文献
% appendix: 附录
% backmatter: 致谢,已发表论文列表
%
% 本科生论文:
% 封面
% frontmatter: 致谢,目录,摘要
% mainmatter: 正文章节,参考文献
% appendix: 附录
\maketitle
\copyrightpage
\frontmatter
\input{chapters/abstract.tex}
\tableofcontents
% \listoffigures
% \listoftables
\input{chapters/notation.tex}
\mainmatter
\input{chapters/intro.tex}
\input{chapters/floats.tex}
\input{chapters/math.tex}
\input{chapters/citations.tex}
\backmatter
\bibliographystyle{ustcthesis-numerical} % 顺序编码制
% \bibliographystyle{ustcthesis-authoryear} % 著者出版年制
% \bibliographystyle{ustcthesis-bachelor} % 本科生参考文献的格式
\bibliography{bib/ustc}
\appendix
\input{chapters/complementary.tex}
\input{chapters/acknowledgements.tex}
\input{chapters/publications.tex}
\end{document}