forked from Po-haoHuang/nctu-thesis
-
Notifications
You must be signed in to change notification settings - Fork 12
/
thesis.tex
101 lines (79 loc) · 1.83 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
92
93
94
95
96
97
98
99
100
101
\documentclass[oneside]{nccuthesis}
\usepackage{times}
\usepackage{verbatim}
\usepackage{color}
\usepackage{url}
\usepackage{graphicx}
\usepackage{array}
\usepackage{pdfpages} % include outside .pdf
\usepackage{wallpaper} % watermark
% for table generate
\usepackage{mathtools}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{booktabs}
\usepackage{adjustbox}
% Format the refs
\usepackage[sort,comma]{natbib}
\usepackage[hidelinks]{hyperref}
% For the tree
\usepackage{tikz}
\usepackage{tikz-qtree}
% For barchart
\usepackage{pgfplots}
% Using the tex-text mapping for ligatures etc.
\defaultfontfeatures{Mapping=tex-text}
% Set the default fonts
\setmainfont{Times New Roman}
\setCJKmainfont{TW-Kai}
% Your information goes here
\input{nccuvars}
\pgfplotsset{compat=1.14}
\begin{document}
% 政大論文浮水印
\input{src/with-watermark.tex}
\hypersetup{pageanchor=false}
\frontmatter
\pagenumbering{gobble}
\makecover
\clearpages
\setcounter{page}{1}
\hypersetup{pageanchor=true}
\pagenumbering{roman}
\phantomsection
% generate certification
% \makecertification
% or include scanned pdf
\addcontentsline{toc}{chapter}{口試委員會審定書}
\includepdf[pages={1}]{pdfs/cert.pdf}
\input{acknowledgements}
\input{abstract}
% Table of Content
\clearpages
\tableofcontents
% List of Figures
\clearpages
\listoffigures
% List of Tables
\clearpages
\listoftables
\mainmatter
% Your thesis goes here
\input{chapters/introduction}
\input{chapters/systemmodel}
\input{chapters/algorithms}
\input{chapters/analysis}
\input{chapters/implementation}
\input{chapters/experiment}
\input{chapters/related}
\input{chapters/conclusion}
\@startappendix
\input{chapters/dataset}
\backmatter
\clearpages
\phantomsection
\addcontentsline{toc}{chapter}{\bibname}
\bibliographystyle{apa}
% Your bibliography goes here
\bibliography{thesis}
\end{document}