forked from sjtug/SJTUThesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
84 lines (62 loc) · 2.51 KB
/
thesis.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
% 设置 biblatex 额外选项
% \PassOptionsToPackage{gbpub=false, gbtype=false}{biblatex}
% 载入 SJTUThesis 模版
% \documentclass[degree=doctor, zihao=-4, language=english, review]{sjtuthesis}
\documentclass[degree=master, zihao=-4]{sjtuthesis}
% \documentclass[degree=bachelor, openany, oneside]{sjtuthesis}
% \documentclass[degree=course, language=english, openright, twoside]{sjtuthesis}
% 选项
% degree=[doctor|master|bachelor|course], % 必选,学位类型
% language=[chinese|english], % 可选(默认:chinese),论文的主要语言
% bibstyle=[gb7714-2015|gb7714-2015ay|ieee], % 可选(默认:gb7714-2015),参考文献样式
% review, % 可选(默认:关闭),盲审模式
% 所有其它可能用到的包都统一放到这里了,可以根据自己的实际添加或者删除。
\usepackage{sjtuthesis}
% 导入参考文献数据库
\addbibresource{bib/thesis.bib}
% \addbibresource{bib/chap2.bib}
% 信息录入,必须在导言区进行!
\input{tex/id}
% 自定义项目标签名称
% \sjtuSetLabel{
% listfigure = {图\quad 录},
% listtable = {表\quad 录}
% }
\begin{document}
% 无编号内容:中英文论文封面、授权页
\maketitle
\makeDeclareOriginality[pdf/original.pdf]
\makeDeclareAuthorization
% 使用罗马数字对前言编号
\frontmatter
% 摘要
\include{tex/abstract}
% 目录、插图目录、表格目录
\tableofcontents
\listoffigures
\listoftables
\listofalgorithms
\include{tex/symbol} % 主要符号、缩略词对照表
% 使用阿拉伯数字对正文编号
\mainmatter
% 正文内容
\include{tex/example}
\include{tex/summary}
% 使用英文字母对附录编号
\appendix
% 附录内容,本科学位论文可以用翻译的文献替代。
\include{tex/app_eq}
\backmatter % 文后无编号部分
% 参考资料
\printbibliography[heading=bibintoc]
% 致谢、发表论文、申请专利、参与项目、简历
% 用于盲审的论文需隐去致谢、发表论文、申请专利、参与的项目
\include{tex/ack} % 致谢
% 中文学士学位论文要求在最后有一个英文大摘要,单独编页码,英文学士学位论文不需要
\include{tex/end_english_abstract}
% 盲审论文中,发表学术论文及参与科研情况等仅以第几作者注明即可,不要出现作者或他人姓名
\include{tex/pub} % 发表论文
\include{tex/projects} % 参与的项目
\include{tex/patents} % 申请专利
\include{tex/resume} % 个人简历
\end{document}