-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathmain.tex
57 lines (47 loc) · 1.69 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
% !TEX TS-program = xelatex
% !BIB program = bibtex
% !TEX encoding = UTF-8 Unicode
\documentclass[
twoside,
openright,
degree = master, % degree = master | doctor
language = english, % language = chinese | english
fontset = template, % fontset = default | template | system | overleaf
watermark = true, % watermark = true | false
doi = true, % doi = true | false
]{ntuthesis}
\input{ntusetup}
\begin{document}
% 封面與口試審定
% Cover and Verification Letter
\makecover % 論文封面(Cover)
\makeverification % 口試委員審定書(Verification Letter)
% 致謝與論文摘要
% Acknowledgement and Abstract
% \pagenumbering{roman} % 若您隱藏口委審定書 請解開此註解 頁碼會從致謝開始(羅馬數字)
\input{front/acknowledgement} % 致謝(Acknowledgement)
\input{front/abstract} % 摘要(Abstract)
% 生成目錄與符號列表
% Contents of Tables and Denotation
\maketableofcontents % 目錄(Table of Contents)
\makelistoffigures % 圖目錄(List of Figures)
\makelistoftables % 表目錄(List of Tables)
\input{front/denotation} % 符號列表(Denotation)
% 論文內容
% Contents of Thesis
\mainmatter
\input{contents/chapter01}
\input{contents/chapter02}
\input{contents/chapter03}
\input{contents/chapter03}
\input{contents/chapter04}
% 參考文獻
% References
\refmatter
\bibliographystyle{abbrv}
\bibliography{back/references}
% 附錄
% Appendices
\input{back/appendix01}
\input{back/appendix02}
\end{document}