-
Notifications
You must be signed in to change notification settings - Fork 51
/
sustechthesis-example-report.tex
70 lines (55 loc) · 2.31 KB
/
sustechthesis-example-report.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
% !TeX encoding = UTF-8
% !TeX program = xelatex
% !TeX spellcheck = en_US
\documentclass[degree=master,language=chinese,font=external,cjk-font=external]{sustechthesis}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 研究生报告模板:开题报告,年度考核报告
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 学位 degree:
% master (默认) | doctor
% 语言 language:
% chinese (默认)| english
% 英文字体 font
% auto (默认,自动选择系统自带字体)| external (包内字体)| times | termes | 等
% Windows 和 macOS 系统上,无需设定。系统自带对应字体,可以删除该参数。
% Unix 系统推荐使用包内字体,而非TeX自带的克隆版字体,以达到和其他系统一致的字体效果。
% Windows 系统上可以删除该参数,使用系统内置字体。
% 中文字体 cjk-font
% auto (默认,自动选择系统自带字体)| external (包内字体)| windows | mac | 等
% 在 **非Windows** 的系统上推荐使用包内字体,而非系统字体。
% 以达到和 Windows 系统一致的字体效果。
% Windows 系统自带对应字体,可以删除该参数。
% 论文基本配置,加载宏包等全局配置
% 在此文件中可以选择
% 1. 【重要】文档类型(开题报告,年度考核报告),默认不开启该选项。
% 2. 生成的PDF为无空白页的用于电子版提交的版本 或 插入空白页的以便双面打印的版本
% 3. 学位学科门类(理学、工学、医学)
% 4. 培养单位
% 5. 作者姓名、指导教师等
\input{sustech-setup}
\begin{document}
% 封面
\maketitle
\frontmatter
% 目录
\tableofcontents
% 插图和附表清单
% \listoffiguresandtables % 插图和附表清单
% \listoffigures % 插图清单
% \listoftables % 附表清单
% 符号对照表(非强制性要求,如果论文中所用符号不多,可以略去)
% \input{data/denotation}
% 正文部分
\mainmatter
\input{data/chap01}
\input{data/chap02}
\input{data/chap03}
\input{data/chap04}
\input{data/chap05}
% 参考文献
\bibliography{ref/refs} % 参考文献使用 BibTeX 编译
% \printbibliography % 参考文献使用 BibLaTeX 编译(兼容性不佳,不太推荐)
% 附录
\appendix
% \input{data/appendix}
\end{document}