-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
71 lines (60 loc) · 2.11 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
%! TEX program = xelatex
\documentclass[
paper=A4, % paper size --> A4 is default in Germany
twoside=true, % onesite or twoside printing
openright, % doublepage cleaning ends up right side
parskip=full, % spacing value / method for paragraphs
chapterprefix=true, % prefix for chapter marks
12pt, % font size
headings=normal, % size of headings
bibliography=totoc, % include bib in toc
listof=totoc, % include listof entries in toc
titlepage=on, % own page for each title page
captions=tableabove, % display table captions above the float env
draft=false, % value for draft version
]{scrreprt}
\newcommand{\thesisTitle}{Thesis Title}
\newcommand{\thesisName}{Author}
\newcommand{\thesisSubject}{Documentation}
\newcommand{\thesisDate}{May 2019}
\newcommand{\thesisVersion}{First Draft}
\newcommand{\thesisUniversity}{\protect{The Chinese University of Hong Kong}}
\newcommand{\thesisUniversityDepartment}{Electronic Engineering}
\newcommand{\thesisUniversityInstitute}{Institute for Clean Thesis Dev}
\newcommand{\thesisUniversityGroup}{Clean Thesis Group (CTG)}
\newcommand{\thesisUniversityCity}{Hong Kong}
\newcommand{\thesisUniversityStreetAddress}{Rm.???, Ho Sin-hang Engineering Buidling, The Chinese University of Hong Kong, Shatin, N.T.}
\newcommand{\thesisUniversityPostalCode}{Postal Code}
\input{tex/config}
\begin{document}
\input{tex/titlepage}
\input{tex/abstract}
\input{tex/abstract_zh}
\input{tex/acknowledgement}
\setstretch{1.5}
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{List of Figures}
\listoffigures
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{List of Tables}
\listoftables
\cleardoublepage
\phantomsection
\input{tex/abbreviations.tex}
\setcounter{tocdepth}{2}
\pdfbookmark[0]{Contents}{Contents}
\tableofcontents
\cleardoublepage
\pagenumbering{arabic}
\setcounter{page}{1}
\pagestyle{maincontentstyle}
\input{tex/introduction}
\input{tex/conclusion}
\appendix
\cleardoublepage
\bibliography{ref}
\bibliographystyle{acl_natbib}
\cleardoublepage
\end{document}