forked from borting/nctu-thesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
139 lines (106 loc) · 4.31 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
\documentclass[final]{thesis} % draft mode (default)
%\documentclass[review]{thesis} % review mode (show contents & reference only)
%\documentclass[watermark,final]{thesis} % final mode (version for library)
%-------------------------------------------------------------------------------
% Package Loading
%-------------------------------------------------------------------------------
\usepackage{multirow} % for multi-row table
\usepackage{booktabs} % table style used in books
\usepackage{chngcntr} % make figure indexing sequential
% Make figure index sequential (remove it if you need book view indexing)
\counterwithout{figure}{chapter}
\counterwithout{figure}{section}
\setcounter{figure}{-1} % There is 1 figure keywork used in title page
\counterwithout{table}{chapter}
\counterwithout{table}{section}
\counterwithout{equation}{chapter}
\counterwithout{equation}{section}
% Keywords command
\providecommand{\keywordszh}[1]{
\vfill
\textbf{\textit{關鍵字:}} #1
}
\providecommand{\keywordsen}[1]{
\vfill
\textbf{\textit{Keywords: }} #1
}
%-------------------------------------------------------------------------------
% Configuration
%-------------------------------------------------------------------------------
% 填寫題目, 作者, 指導教授, 學校, 系所, 日期等資訊
\input{config/frontmatters}
% 修改 thesis.cls 的預設字型
\input{config/fonts}
\begin{document}
% Show repeated author names in bibliography when using IEEEtran.bst
% Comment out this line if you don't set IEEEtran in \bibliographystyle{}
\bstctlcite{IEEEexample:BSTcontrol}
% Generate cover, title, authorization, approval and copyright pages
\maketitle
%-------------------------------------------------------------------------------
% Acknowledgement
%-------------------------------------------------------------------------------
% 誌謝
\input{ack/ack}
% 題獻頁 (Only shown in the final mode of a PhD dissertation)
\input{ack/dedication}
%-------------------------------------------------------------------------------
% Abstract
%-------------------------------------------------------------------------------
% 中文摘要
\input{abs/abstract_zh}
% 英文摘要
\input{abs/abstract_en}
%-------------------------------------------------------------------------------
% 目錄
%-------------------------------------------------------------------------------
% Generate 'Table of Contents', 'List of Figures', and 'List of Tables', and
% Set page numbering to 'arabic'
\maketocs
%-------------------------------------------------------------------------------
% Contents
%-------------------------------------------------------------------------------
% Set page numbering to 'arabic' (1, 2, 3, ...)
\mainmatter
% 內文, 請依照章節順序擺放
\input{chapters/1-intro}
\input{chapters/2-doccls}
\input{chapters/3-secorder}
\input{chapters/4-ref}
\input{chapters/5-figure}
%-------------------------------------------------------------------------------
% 參考文獻
%-------------------------------------------------------------------------------
% Set bib style
\bibliographystyle{IEEEtran}
% Add Bibliography to "Table of Contents"
\addBibToContents
% Usage:
% \bibliography{bib/bib1,bib/bib2,...,bib/bibN} % 注意: 不要有空格
%
% 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'.
%
% For non IEEEtran users:
% Please delete bib/ieeeBSTcontrol from \bibliography{}
\bibliography{bib/ieeeBSTcontrol,bib/thesis}
%-------------------------------------------------------------------------------
% 附錄
%-------------------------------------------------------------------------------
% Start appendix
\appendix
% Add appendicies to "Table of Contents"
\addAppxToContents
% 請從此開始依序擺放附錄
\input{appx/1-appendix}
%-------------------------------------------------------------------------------
% 作者簡歷
%-------------------------------------------------------------------------------
% 簡歷 (Only shown in a PhD dissertation)
\input{author/cv}
% 著作列表 (Only shown in a PhD dissertation)
\input{author/publications}
\end{document}