-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmain.tex
executable file
·112 lines (98 loc) · 3.94 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
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
102
103
104
105
106
107
108
109
110
111
112
%----------------------------------------------------------------------
% MAIN PROGRAM OF THESIS/DISSERTATION
%----------------------------------------------------------------------
% Set the class of document by NCTU
\documentclass[master, watermark, final, print]{Class/NCTUtran}
%----------------------------------------------------------------------
% CONFIGURATION
%----------------------------------------------------------------------
% HINT: Fill in your information of this thesis/dissertation in "Config/config.tex"
\input{Config/config}
% Modify the defualt font in "NCTUtran.cls"
\input{Config/fonts}
%----------------------------------------------------------------------
% MAIN CONTENT
%----------------------------------------------------------------------
\begin{document}
% Show repeated author names in bibliography when using "IEEEtran.bst"
% HINT: Comment out this line if you don't set "IEEEtran" in \bibliographystyle{}
\bstctlcite{IEEEexample:BSTcontrol}
%%% FRONT MATTERS %%%
% 1. Cover Page (封面頁)
% 2. Title Page (標題頁)
% 3. Copyright Page (版權頁)
\maketitle
% 4. Certification (論文審訂書)
% HINT: Put your Chinese and English certification file (PDF) into "1-Cert/"
\includepdf[pages={1}]{1-Cert/1-Certification-zh.pdf}
% HINT: The English certification is for Phd only
%\includepdf[pages={1}]{Cert/2-Certification-en.pdf}
% 5. Authorization (授權書)
% HINT: Put your authorization file (PDF) into "2-Auth/"
\includepdf[pages={1}]{2-Auth/1-Authorization.pdf}
%%% ABSTRACT %%%
% 1. Chinese Abstract (中文摘要)
% HINT: Write down your contents in "3-Abs/1-Abstract-zh.tex"
\input{3-Abs/1-Abstract-zh}
% 2. English Abstract (英文摘要)
% HINT: Write down your contents in "3-Abs/2-Abstract-en.tex"
\input{3-Abs/2-Abstract-en}
%%% ACKNOWLEDGEMENT %%%
% 1. Acknowledgement (誌謝頁)
% HINT: Write down your contents in "4-Ack/1-Acknowledgement.tex"
\input{4-Ack/1-Acknowledgement}
% 2. Dedication (題獻頁) [PhD only]
% HINT:
% * Only shown in the final mode of a PhD dissertation
% * Write down your contents in "4-Ack/2-Dedication.tex"
%\input{4-Ack/2-Dedication}
%%% TOC / LOF %%%
% Generate Table of Contents (目錄頁) and List of Figures (圖目頁)
\maketocs
% Set page numbering to 'arabic' (1, 2, 3, ...)
\mainmatter
%%% CHAPTERS %%%
% HINT:
% * Arrange the order of all chapters here
% * Add your chapters as follow
\input{5-Chapters/1-Introduction}
\input{5-Chapters/2-RelatedWork}
\input{5-Chapters/3-Design}
\input{5-Chapters/4-Evaluation}
\input{5-Chapters/5-Conclusion}
%%% BIBLIOGRAPHY %%%
% Set the style of bibliography
\bibliographystyle{IEEEtran}
% Add the bibliography to "Table of Contents"
\addBibToContents
% Include bibliography
% USAGE:
% 1. Please put your ".bib" file in the folder "6-Bib/"
% 2. Modify the command as follow: (Do NOT split with SPACE!)
% \bibliography{6-Bib/bib1,6-Bib/bib2,...,6-Bib/bibN}
% NOTICE:
% 1. For IEEEtran users:
% DO NOT remove "Bib/BSTcontrol.bib" when using "IEEEtran.bst". The reason is
% that when we cite two papers of the same (or similar) authors, "IEEEtran.bst"
% would replace the author names with "------". To avoid this, we use "BSTControl.bib"
% to set "ctldash_repeated_names" to 'no'.
% 2. For non IEEEtran users:
% Please delete "6-Bib/BSTcontrol" from "\bibliography{}"
\bibliography{6-Bib/BSTcontrol,6-Bib/thesis}
%%% APPENDIX %%%
% Appendix (附錄)
% HINT: Arrange the order of all appendicies here
% HINT: Add your appendicies as follow
%\input{7-Appx/1-Appx}
%%% AUTHOR [PhD only] %%%
% 1. Curriculum Vitae (作者簡歷) [PhD only]
% HINT:
% * Write down your contents in "8-Author/CV.tex"
% * Only shown in the final mode of a PhD dissertation
%\input{8-Author/1-CV}
% 2. Publications (著作列表) [PhD only]
% HINT:
% * Write down your contents in "8-Author/Publications.tex"
% * Only shown in the final mode of a PhD dissertation
%\input{8-Author/2-Publications}
\end{document}