-
Notifications
You must be signed in to change notification settings - Fork 7
/
thesis.tex
91 lines (84 loc) · 3.18 KB
/
thesis.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
%!TEX program=xelatex
\documentclass[12pt,a4paper,twoside]{report}
% Revised by ZHENG Fan ([email protected]) according to
% CUHK Grad. School's requirements on thesis format. Check:
% https://www.gradsch.cuhk.edu.hk/pgstudent/gsinfo/research/Chapter%206.html
%=======================================================
% handle Chinese and fonts
% CUHK has no limitations on font-types
\usepackage{fontspec}
\usepackage[scheme=plain]{ctex}
% \setCJKmainfont{SimSun} % 可自行更改为系统中文字体;SimSun即Windows宋体。
%=======================================================
\input{format/style}
\input{format/symbols}
%=======================================================
% margins and spacing required by CUHK Grad-School
% 4 cm margin for binding edge, 2.5 cm for outer edge:
\usepackage[inner=4cm,outer=2.5cm]{geometry}
\usepackage{setspace}
% 1.5 line spacing for normal texts:
\setstretch{1.5}
% avoid too much space automatically padded between paragraphs to fill a page:
\raggedbottom
%=======================================================
% personally imported packages and customization
\usepackage[mono=false]{libertine} % I personally favour this font
\usepackage{subfig}
\usepackage{tikz}
\usepackage{pgfplots}
\graphicspath{{figures/}}
\usepackage[authoryear,square]{natbib} % citation style management
\def\cite{\citep}
% CUHK has no limitations on bibliography style, use your favor.
%\bibliographystyle{ieeetr} % for 'nubmers' citation style
\bibliographystyle{apalike} % for 'authoryear' citation style
\usepackage[colorlinks=true,linkcolor=blue,citecolor=magenta]{hyperref}
%=======================================================
\begin{document}
\thesistitle{The CUHK Thesis Title}
\thesistitlezh{香港中文大学学位论文标题} % CUHK 对简繁体不作要求
\authorname{ZHENG, Fan}
\degree{Doctor of Philosophy}
\programme{Mechanical and Automation Engineering}
\institution{The Chinese University of Hong Kong}
\submitdate{March 1874}
\committee{
Professor ZHANG San (Chair)\\
Professor LI Si (Thesis Supervisor)\\
Professor WANG Wu (Thesis Co-supervisor)\\
Professor ZHAO Liu (Committee Member)\\
Professor WHO Ever (External Examiner)
}
\coverpage
%=======================================================
\pagenumbering{roman}
\abstractpage
%=======================================================
\acknowledgementpage
%=======================================================
\tableofcontents
\listoffigures
\listoftables
\input{sections/symbols-and-acronyms.tex}
%=======================================================
\newpage
\setcounter{page}{0}
\pagenumbering{arabic}
\pagestyle{headings}
%=======================================================
%insert the chapters
\input{sections/introduction.tex}
\input{sections/chapter-one.tex}
\input{sections/chapter-two.tex}
\input{sections/conclusion.tex}
%=======================================================
\appendix
\input{sections/proof.tex}
\input{sections/publications.tex}
%=======================================================
\newpage
% CUHK recommend single-spaced references
\setstretch{1}
\bibliography{database}
\end{document}