forked from SUSTC/sustcthesis
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.tex
157 lines (130 loc) · 4.03 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
\documentclass[bachelor,openright, english]{sustcthesis}
% 默认 twoside 双面打印
% 将 master 修改为 bachelor, doctor or master
% 要使用 adobe 字体,添加 adobefonts 选项
% 使用 euler 数学字体,如不愿使用,去掉 euler
% 使用英文写作,请添加english
% 设置图形文件的搜索路径
\graphicspath{{figures/}}
\renewcommand*{\thefootnote}{\arabic{footnote}}
\renewcommand{\algorithmicrequire}{\textbf{Input:}}
\renewcommand{\algorithmicensure}{\textbf{Output:}}
\usepackage[super]{gbt7714} % 默认 角标数字 GB/T 7714-2015 版
% \setboolean{@twoside}{false} % false为单面打印,不会空偶数页。true为双面打印,注释这条命令即默认双面
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 封面部分
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 英文封面内容
\entitle{Thsis title}
\enauthor{xxxxxxx}
\studentid{xxxxxx}
\endepart{xxxxxx}
\enmajor{xxxxxx}
\enadvisor{XXXX}
\ensubmitdate{\today}
% 中文封面内容
\title{论文标题}
\author{xxxxxxx}
\studentid{xxxxx}
\depart{xxxxxx}
\major{xxxxx}
\advisor{XXXX}
\submitdate{2019年 5 月 30 日}
\begin{document}
% 封面
\maketitle
%特别注意,以下述顺序为准,在对应部分添加文档部件,切勿颠倒顺序:
%本科论文的文档部件顺序是:
% frontmatter:致谢、目录、中文摘要、英文摘要、
% mainmatter: 正文章节
% backmatter: 参考文献或资料注释、附录
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 前言部分
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\frontmatter
\makeatletter
\ifsustc@bachelor
%%%%%%%%%%%%%%%%%
%本科论文修改这里
%%%%%%%%%%%%%%%%%
% 致谢
\include{chapter/honest}
\include{chapter/chap-preface}
%目录部分
%目录
\tableofcontents
%默认表格、插图、算法索引名称分别为“表格索引”、“插图索引”和“算法索引”
%如果需要自行修改lot,lof,loa的名称,请定义
%\sustclotname{...}
%\sustclofname{...}
%\sustcloaname{...}
% 表格索引
%\sustclot
% 插图索引
%\sustclof
%算法索引
%如果需要使用算法环境并列出算法索引,请加入补充宏包。
%\sustcloa
% 摘要
\include{chapter/abstract}%此文件中含有中英文摘要
\include{chapter/denotation}
\else
%%%%%%%%%%%%%%%%%
%硕博论文修改这里
%%%%%%%%%%%%%%%%%
% 摘要
\include{chapter/abstract}%此文件中含有中英文摘要
% 目录
\tableofcontents
%默认表格、插图、算法索引名称分别为“表格索引”、“插图索引”和“算法索引”
%如果需要自行修改lot,lof,loa的名称,请定义
%\sustclotname{...}
%\sustclofname{...}
%\sustcloaname{...}
% 表格索引
\sustclot
% 插图索引
\sustclof
%算法索引
%如果需要使用算法环境并列出算法索引,请加入补充宏包。
%\ustcloa
%符号说明,需要加入补充包
\include{chapter/denotation}%不是必需的,如果不想列出请注释掉
\fi
\makeatother
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 正文部分
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\mainmatter
\include{chapter/introduction}
%自行添加
\include{chapter/chap-three}
\include{chapter/chap-two}
\include{chapter/chap-four}
\include{chapter/chap-five}
\include{chapter/chap-six}
\include{chapter/chap-seven}
\include{chapter/chap-eight}
\include{chapter/conclusion}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 附件部分
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\backmatter
%结语
% 参考文献
% 使用 BibTeX
% 选择参考文献的排版格式。注意ustcbib这个格式不保证完全符合要求,请自行决定是否使用
% 以下引用废除采用官方GBT7714-2015的宏包,已经在导言区调用
% \bibliographystyle{sustcbib}%{GBT7714-2005NLang-UTF8}
\bibliography{bib/tex}
\nocite{*} % for every item
% 不使用 BibTeX
% \include{chapter/bib}
% 附录,没有请注释掉
\begin{appendix}
\include{chapter/chap-appD}
\include{chapter/chap-appB}
\include{chapter/chap-appA}
\end{appendix}
\include{chapter/thanks}
\end{document}