forked from ytliu74/SJTUThesisBachelor2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
107 lines (79 loc) · 2.31 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
% !TeX encoding = UTF-8
% 载入 SJTUThesis 模版
\documentclass[type=bachelor, oneside]{sjtuthesis}
% 选项
% type=[doctor|master|bachelor], % 可选(默认:master),论文类型
% zihao=[-4|5], % 可选(默认:-4),正文字号大小
% lang=[zh|en|de|ja], % 可选(默认:zh),论文的主要语言
% review, % 可选(默认:关闭),盲审模式
% [twoside|oneside], % 可选(默认:twoside),双页或单页边距模式
% [openright|openany], % 可选(默认:openright),奇数页或任意页开始新章
% math-style=[ISO|TeX], % 可选 (默认:ISO),数学符号样式
% 论文基本配置,加载宏包等全局配置
\input{setup}
\begin{document}
%TC:ignore
% 标题页
\maketitle
% 原创性声明及使用授权书
\copyrightpage
% 插入外置原创性声明及使用授权书
% 此时必须在导言区使用 \usepackage{pdfpages}
% \copyrightpage[scans/sample-copyright.pdf]
% 前置部分
\frontmatter
{\ExplSyntaxOn
\bool_if:NTF \g__sjtu_twoside_bool
{
\fancyhead [ LE ] { }
\fancyhead [ RO ] { }
}
{
\fancyhead [ R ] { }
}
\ExplSyntaxOff
% 摘要
\input{contents/abstract}
% 目录
\tableofcontents
\clearpage}
% 插图索引
\listoffigures*
% 表格索引
\listoftables*
% 算法索引
\listofalgorithms*
% 符号对照表
\input{contents/nomenclature}
%TC:endignore
% 主体部分
\mainmatter
% 正文内容
\input{contents/intro}
\input{contents/math_and_citations}
\input{contents/floats}
\input{contents/summary}
%TC:ignore
% 参考文献
\printbibliography[heading=bibintoc]
% 附录
\appendix
% 附录中图表不加入索引
\captionsetup{list=no}
% 附录内容
\input{contents/app_maxwell_equations}
\input{contents/app_flow_chart}
% 结尾部分
\backmatter
% 用于盲审的论文需隐去致谢、发表论文、科研成果、简历
% 致谢
\input{contents/acknowledgements}
% 发表论文及科研成果
% 盲审论文中,发表论文及科研成果等仅以第几作者注明即可,不要出现作者或他人姓名
\input{contents/achievements}
% 简历
\input{contents/resume}
% 学士学位论文要求在最后有一个大摘要,单独编页码
\input{contents/digest}
%TC:endignore
\end{document}