forked from sjtug/SJTUThesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
116 lines (87 loc) · 2.52 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
108
109
110
111
112
113
114
115
116
% !TeX encoding = UTF-8
% 载入 SJTUThesis 模版
\documentclass[type=bachelor,language=english]{sjtuthesis}
% 选项
% type=[doctor|master|bachelor|course], % 可选(默认:doctor),论文类型
% zihao=[-4|5], % 可选(研究生默认:-4,本科默认:5),正文字号大小
% language=[chinese|english], % 可选(默认:chinese),论文的主要语言
% review, % 可选(默认:关闭),盲审模式
% [twoside|oneside] % 可选(默认:twoside),单双页模式
% 论文基本配置,加载宏包等全局配置
\input{setup}
\begin{document}
%TC:ignore
% 标题页
\maketitle
% 原创性声明及使用授权书
\copyrightpage[scans/ji-copyright.pdf]
% 前置部分
\frontmatter
% 摘要
\input{sections/0-abstract}
% 目录
\tableofcontents
%TC:endignore
% 主体部分
\mainmatter
% 正文内容
{
\setstretch{1.5}
\setlength{\parindent}{0pt}
\setlength{\parskip}{1em}
% = = = = = = = = = = = = = = = = = = = = = %
% Chapters %
% = = = = = = = = = = = = = = = = = = = = = %
\input{sections/1-intro}
\input{sections/2-relatedwork}
\input{sections/3-spec}
\input{sections/4-conceptgeneration}
\input{sections/5-conceptselection}
\input{sections/6-design}
\input{sections/7-implement}
\input{sections/8-discussion}
\input{sections/9-conclusion}
}
%TC:ignore
% 致谢
\input{sections/98-acknowledgements}
% 附录
\appendix
{
\setstretch{1.5}
\setlength{\parindent}{0pt}
\setlength{\parskip}{1em}
% \renewcommand{\thechapter}{\Roman{chapter}}
\captionsetup{list=no}
% = = = = = = = = = = = = = = = = = = = = = %
% Appendix %
% = = = = = = = = = = = = = = = = = = = = = %
\input{sections/99-bios}
% \input{sections/100-format}
}
% 结尾部分
\backmatter
% 参考文献
\printbibliography[heading=bibintoc]
% 个人工作报告
{
\setstretch{1.5}
\setlength{\parindent}{0pt}
\setlength{\parskip}{1em}
% = = = = = = = = = = = = = = = = = = = = = %
% Individual %
% = = = = = = = = = = = = = = = = = = = = = %
\includepdf{scans/report-cover.pdf}
\addcontentsline{toc}{chapter}{Individual Contribution Reports}
\input{individual/sl}
\includepdf{scans/report-cover.pdf}
\input{individual/lzy}
\includepdf{scans/report-cover.pdf}
\input{individual/syq}
\includepdf{scans/report-cover.pdf}
\input{individual/sj}
\includepdf{scans/report-cover.pdf}
\input{individual/yyc}
}
%TC:endignore
\end{document}