forked from SYSU-SCC/sysu-thesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
52 lines (46 loc) · 1.42 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
\documentclass{sysuthesis}
\input{docs/info} % 论文相关信息
\input{docs/proposal} % 开题报告内容
\input{docs/abstract} % 摘要内容
\input{docs/grading} % 成绩评定记录表评语
\input{docs/progress} % 过程检查报告数据
\begin{document}
% 论文前置部分
\frontmatter
\pagenumbering{Roman}
\maketitle % 封面
\makeProposal% 开题报告
\makeProgressCheck % 过程检查记录表
\makeDefenseRecord % 答辩情况等级表
\makedisclaim % 学术诚信声明
\makeabstract % 中英文摘要
\maketableofcontents % 目录
\makelistoffiguretable
% 论文主体部分
\mainmatter
% 引言
% 正文
\include{docs/chap01}
\newclearpage
\include{docs/chap02}
\newclearpage
\include{docs/chap03}
\newclearpage
\include{docs/chap04}
\newclearpage
\include{docs/chap05}
\newclearpage
% 结语
% 附录部分
\backmatter
% 参考文献. 因不需要纳入章节目录, 故放入附录部分
% 实际上参考文献是属于论文主体部分
\makereferences
\include{docs/ack} % 致谢
\newclearpage
% 附录
\appendix
\include{docs/appendix1}
\newclearpage
\makeGrade % 成绩评定记录表
\end{document}