forked from YinJC/ChinaThesis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
72 lines (57 loc) · 1.66 KB
/
main.tex
File metadata and controls
72 lines (57 loc) · 1.66 KB
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
% !TeX encoding = UTF-8
% !TeX program = xelatex
% !TeX spellcheck = en_US
\documentclass[doctor]{chinathesis}
% doctor|master|bachelor [chinese|english] [print|pdf] [super|numebers|authoryear]
\title{中文学位论文\\LaTeX 模板框架}
\author{李泽平}
\major{计算机科学与技术}
\supervisor{高德纳\ 教授}
% \cosupervisor{}
% \date{二〇一七年五月一日} % 注释掉则为今日
% \professionaltype{专业学位类型}
% \secretlevel{秘密} % 绝密|机密|秘密,注释本行则不保密
% \secretyear{20} % 保密年限
\entitle{A LaTeX template framework for Chinese dissertations}
\enauthor{Zeping Li}
\enmajor{Computer Science and Technology}
\ensupervisor{Prof. Donald E. Knuth}
% \encosupervisor{}
% \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{siunitx}
\usepackage{amsthm}
\usepackage{hyperref}
\DeclareRobustCommand\cs[1]{\texttt{\char`\\#1}}
\newcommand\pkg{\textsf}
\renewcommand\vec{\symbf}
\newcommand\mat{\symbf}
\newcommand\ts{\symbfsf}
\newcommand\real{\mathbf{R}}
\begin{document}
\maketitle
\makestatement
\frontmatter
\input{chapters/abstract}
\tableofcontents
% \listoffigures
% \listoftables
\input{chapters/notation}
\mainmatter
\input{chapters/intro}
\input{chapters/floats}
\input{chapters/math}
\input{chapters/citations}
\bibliography{bibs/refs}
\appendix
\chapter{论文规范}
\backmatter
\input{chapters/acknowledgements}
\input{chapters/publications}
\end{document}