-
Notifications
You must be signed in to change notification settings - Fork 27
/
thesis.tex
executable file
·85 lines (64 loc) · 1.64 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
\documentclass{nthuthesis}
\usepackage{times}
\usepackage{verbatim}
\usepackage{color}
\usepackage{url}
\usepackage{graphicx}
\usepackage{array}
\usepackage{wallpaper}
\usepackage{cite}
\usepackage{caption}
\usepackage{multirow}
\usepackage{makecell}
\usepackage{hhline}
\usepackage{rotating}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{mathrsfs}
% declare the path(s) where your graphic files are
\graphicspath{{./figsrc/}}
% and their extensions so you won't have to specify these with
% every instance of \includegraphics
\DeclareGraphicsExtensions{.pdf,.jpeg,.png}
% Using the tex-text mapping for ligatures etc.
\defaultfontfeatures{Mapping=tex-text}
% Set the default fonts
% English font
% Note: please refer to 'fc-list :outline -f "%{family}\n"' for choosing a valid font name
\setmainfont{Times New Roman}
% Chinese font
% Note: please refer to 'fc-list :outline -f "%{family}\n"' for choosing a valid font name
\setCJKmainfont[AutoFakeBold=3,AutoFakeSlant=.4]{Kaiti TC}
\defaultCJKfontfeatures{AutoFakeBold=6,AutoFakeSlant=.4}
\ifdefined\withwatermark
\CenterWallPaper{0.5}{watermark.pdf}
\fi
% Your information goes here
\input{nthuvars}
\begin{document}
\frontmatter
\makecover
\makecopyright
\input{acknowledgements}
\input{abstract}
{\singlespacing
\tableofcontents
\listoffigures
\listoftables
}
\mainmatter
% Your thesis goes here
\input{introduction}
\input{omr-overview}
% \input{discussion}
% \input{conclusion}
\appendix
\backmatter
\renewcommand{\bibname}{References}
\addcontentsline{toc}{chapter}{\bibname}
\bibliographystyle{ieeetr}
% Your bibliography goes here
{\singlespacing
\bibliography{thesis}
}
\end{document}