-
Notifications
You must be signed in to change notification settings - Fork 13
/
main.tex
62 lines (48 loc) · 1.44 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
% !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. Knuth Hua}
% \encosupervisor{}
% \endate{May 1, 2017} % Today if commented
% \enprofessionaltype{Professional degree type}
% \ensecretlevel{Secret} % Top secret|Highly secret|Secret
% 图片默认目录
\graphicspath{{figures/}}
% 三线表
\usepackage{booktabs}
% 向量、矩阵和张量:
\renewcommand\vec{\symbf}
\newcommand\mat{\symbf}
\newcommand\ts{\symbfsf}
\begin{document}
\maketitle
\makestatement
\frontmatter
\include{chapters/abstract}
\tableofcontents
\mainmatter
\include{chapters/intro}
\include{chapters/floats}
\include{chapters/math}
\include{chapters/citations}
\bibliography{bibs/refs}
\appendix
\chapter{论文规范}
\backmatter
\include{chapters/acknowledgements}
\include{chapters/publications}
\end{document}