-
Notifications
You must be signed in to change notification settings - Fork 2
/
sysuthesis-example.tex
100 lines (74 loc) · 2.45 KB
/
sysuthesis-example.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
% !TeX encoding = UTF-8
% !TeX program = xelatex
% !TeX spellcheck = en_US
\documentclass[degree=doctor,fontset=ubuntu]{sysuthesis}
% 学位 degree:
% doctor | master | bachelor | postdoc
% 学位类型 degree-type:
% academic(默认)| professional
% 论文类型 thesis-type:
% thesis (默认)| proposal | report
% 语言 language
% chinese(默认)| english
% 字体库 fontset
% windows | mac | fandol | ubuntu
% 建议终版使用 Windows 平台的字体编译
% 论文基本配置,加载宏包等全局配置
\input{sysusetup}
\begin{document}
% 封面
\frontcoverpage[file=scan/scan-frontcover.pdf]
% 扉页
\maketitle
% 原创性及使用授权声明
% \copyrightpage
% 将签字扫描后授权文件 scan-copyright.pdf 替换原始页面
% 建议用Word文档编辑后转成pdf
\copyrightpage[file=scan/scan-copyright.pdf]
\frontmatter
\input{data/abstract}
% 目录
\tableofcontents
% 插图和附表清单
% 本科生的插图索引和表格索引需要移至正文之后、参考文献前
% \listoffiguresandtables % 插图和附表清单(仅限研究生)
\listoffigures % 插图清单
\listoftables % 附表清单
% 符号对照表
\input{data/denotation}
% 正文部分
\mainmatter
\input{data/chap01}
\input{data/chap02}
\input{data/chap03}
\input{data/chap04}
% 其他部分
\backmatter
% 参考文献
\bibliography{ref/refs} % 参考文献使用 BibTeX 编译
% \printbibliography % 参考文献使用 BibLaTeX 编译
% 附录
% 本科生需要将附录放到声明之后,个人简历之前
\appendix
% \input{data/appendix-survey} % 本科生:外文资料的调研阅读报告
% \input{data/appendix-translation} % 本科生:外文资料的书面翻译
\input{data/appendix}
% 致谢
\input{data/acknowledgements}
% 个人简历、在学期间完成的相关学术成果
% 本科生可以附个人简历,也可以不附个人简历
\input{data/resume}
% 学位论文指导小组、公开评阅人和答辩委员会名单
% 本科生不需要
\input{data/committee}
% 指导教师/指导小组评语
% 本科生不需要
\input{data/comments}
% 答辩委员会决议书
% 本科生不需要
\input{data/resolution}
% 本科生的综合论文训练记录表(扫描版)
% \record{file=scan-record.pdf}
% 封底
\backcoverpage[file=scan/scan-backcover.pdf]
\end{document}