forked from ustctug/ustcthesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
87 lines (70 loc) · 2.15 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
% !TeX encoding = UTF-8
% !TeX program = xelatex
% !TeX spellcheck = en_US
\documentclass[doctor]{ustcthesis}
% doctor|master|bachelor [academic|professional] [chinese|english] [print|pdf]
% [super|numebers|authoryear]
\title{中国科学技术大学\\学位论文模板示例文档}
\author{李泽平}
\major{数学与应用数学}
\supervisor{华罗庚\ 教授}
\cosupervisor{钱学森\ 教授}
% \date{二〇一七年五月一日} % 注释掉则为今日
% \professionaltype{专业学位类型}
% \secretlevel{秘密} % 绝密|机密|秘密,注释本行则不保密
% \secretyear{20} % 保密年限
\entitle{An example of thesis template for University of Science and Technology
of China}
\enauthor{Zeping Li}
\enmajor{Mathematics and Applied Mathematics}
\ensupervisor{Prof. Luogeng Hua}
\encosupervisor{Prof. Xuesen Qian}
% \endate{May 1, 2017} % Today if commented
% \enprofessionaltype{Professional degree type}
% \ensecretlevel{Secret} % Top secret|Highly secret|Secret
% 加载宏包和配置
\usepackage{graphicx}
\graphicspath{{figures/}}
\usepackage{booktabs}
\usepackage{longtable}
\usepackage[boxed,algochapter,lined,linesnumbered]{algorithm2e}
\usepackage{amsthm}
\DeclareRobustCommand\cs[1]{\texttt{\char`\\#1}}
\newcommand\pkg{\textsf}
\renewcommand\vec{\symbf}
\newcommand\mat{\symbf}
\newcommand\ts{\symbfsf}
\begin{document}
% 研究生论文:
% 封面,原创性声明和授权使用声明
% frontmatter: 摘要,目录,[图、表清单],[符号说明]
% mainmatter: 正文章节,参考文献
% appendix: 附录
% backmatter: 致谢,已发表论文列表
%
% 本科生论文:
% 封面
% frontmatter: 致谢,目录,摘要
% mainmatter: 正文章节,参考文献
% appendix: 附录
\maketitle
\makestatement
\frontmatter
\input{chapters/abstract}
\tableofcontents
% \listoffigures
% \listoftables
% \listofalgorithms
% \input{chapters/notation}
\mainmatter
\input{chapters/intro}
\input{chapters/floats}
\input{chapters/math}
\input{chapters/citations}
\bibliography{bib/ustc}
\appendix
\chapter{论文规范}
\backmatter
\input{chapters/acknowledgements}
\input{chapters/publications}
\end{document}