forked from hellckt/SHMTUThesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
69 lines (52 loc) · 1.89 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
% egree=[doctor|master|bachelor|course] % 必选,学位类型
% review=[true|false] % 可选,盲审,默认为false
% language=[chinese|english], % 可选(默认:chinese),论文的主要语言
% bibstyle=[gb7714-2015|gb7714-2015ay|ieee], % 可选(默认:gb7714-2015),参考文献样式
\documentclass[degree=master, language=chinese, review=false, oneside, AutoFakeBold]{shmtuthesis}
% 所有其它可能用到的包都统一放到shmtuthesis.sty中,可以根据自己的实际添加或者删除。
\usepackage{shmtuthesis}
% 定义图片文件目录与扩展名
\graphicspath{{figures/}}
\DeclareGraphicsExtensions{.pdf, .eps, .png, .jpg, .jpeg}
% 导入参考文献数据库
\addbibresource{thesis.bib}
% 论文信息,必须
\input{tex/information}
\begin{document}
% 无编号内容:论文封面、授权页
\maketitle
\makeDeclareOriginality
\makeDeclareAuthorization
% 使用罗马数字对前言编号
\frontmatter
% 摘要
\input{tex/abstract}
% 目录、插图目录、表格目录、算法目录
\tableofcontents
\listoffigures
\listoftables
\listofalgorithms
% 使用阿拉伯数字对正文编号
\mainmatter
% 正文内容
\input{tex/introduction}
\input{tex/float}
\input{tex/math_and_citations}
\input{tex/summary}
% 致谢
\input{tex/acknowledgements}
% 参考文献
\printbibliography[heading=bibintoc]
% 使用英文字母对附录编号
\appendix
\input{tex/appendix/maxwell_equations}
\input{tex/appendix/flow_chart}
% 文后无编号部分
\backmatter
% 发表论文、获奖情况、申请专利、参与项目
% 盲审论文中,发表学术论文及参与科研情况等仅以第几作者注明即可,不要出现作者或他人姓名
\input{tex/achievements/publications}
\input{tex/achievements/awards}
\input{tex/achievements/patents}
\input{tex/achievements/projects}
\end{document}