forked from sjtug/SJTUThesis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.tex
81 lines (58 loc) · 2.1 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
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
% !TeX encoding = UTF-8
% 载入 SJTUThesis 模版
\documentclass[degree=master]{sjtuthesis}
% 选项
% degree=[doctor|master|bachelor|course], % 可选(默认:doctor),学位类型
% zihao=[-4|5], % 可选(研究生默认:-4,本科默认:5),正文字号大小
% language=[chinese|english], % 可选(默认:chinese),论文的主要语言
% review, % 可选(默认:关闭),盲审模式
% [twoside|oneside] % 可选(默认:twoside),单双页模式
% 论文基本配置,加载宏包等全局配置
\input{sjtusetup}
\begin{document}
%TC:ignore
% 无编号内容:中英文论文封面、授权页
\maketitle
\makeorigpage*
\makeauthpage[scans/authorization.pdf]
% 使用罗马数字对前言编号
\frontmatter
% 摘要
\input{contents/abstract}
% 目录、插图目录、表格目录
\tableofcontents
\listoffigures*
\listoftables*
\listofalgorithms*
% 主要符号、缩略词对照表
\input{contents/nomenclature}
%TC:endignore
% 使用阿拉伯数字对正文编号
\mainmatter
% 正文内容
\input{contents/intro}
\input{contents/floats}
\input{contents/math_and_citations}
\input{contents/summary}
%TC:ignore
% 使用英文字母对附录编号
\appendix
% 附录内容,本科学位论文可以用翻译的文献替代。
\input{contents/app_maxwell_equations}
\input{contents/app_flow_chart}
% 文后无编号部分
\backmatter
% 参考资料
\printbibliography[heading=bibintoc]
% 用于盲审的论文需隐去致谢、发表论文、参与项目、申请专利、简历
% 致谢
\input{contents/acknowledgements}
% 发表论文、参与项目、申请专利、简历
% 盲审论文中,发表学术论文及参与科研情况等仅以第几作者注明即可,不要出现作者或他人姓名
\input{contents/publications}
\input{contents/achievements}
\input{contents/resume}
% 中文学士学位论文要求在最后有一个英文大摘要,单独编页码,英文学士学位论文不需要
\input{contents/english_digest}
%TC:endignore
\end{document}