-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.tex
57 lines (48 loc) · 2.64 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
\documentclass[
twoside,
openright,
degree = master, % degree = master | doctor
language = chinese, % language = chinese | english
fontset = template, % fontset = default | template
% draft % LaTex draft mode (images will change to box)
]{ccuthesis}
\input{ccusetup}
\begin{document}
% 封面 Cover
% 若需要在封面加上(初稿)字樣,請在\makecover後加上{draft}
%
% \makecover{draft} % 有(初稿)字樣的論文封面(Cover with Draft)
\makecover % 論文封面(Cover)
% 口試審定 Verification Letter
% \makeverification會生成空白的審定書
% 若有審定書pdf檔案,可用\renderverification{檔案路徑}渲染審定書
%
% \makeverification % 口試委員審定書(Verification Letter)
\renderverification{frontpages/verification} % 渲染口試委員審定書(Render Verification Letter)
% 加入浮水印 Watermark
% 若需要再封面加上浮水印,請將\makewatermark{watermark}放在\makecover之前
%
\makewatermark{watermark} % 加入浮水印(Watermark)
% 致謝與論文摘要 Acknowledgement and Abstract
\frontmatter
\input{frontpages/acknowledgement} % 致謝(Acknowledgement)
\input{frontpages/abstract} % 摘要(Abstract)
% 生成目錄與符號列表 Tables of Contents and Denotation
\maketableofcontents % 目錄(Table of Contents)
\makelistoffigures % 圖目錄(List of Figures)
\makelistoftables % 表目錄(List of Tables)
\input{frontpages/denotation} % 符號列表(Denotation)
% 論文內容 Contents of Thesis
\mainmatter
\input{sections/01introduction} % 緒論(Introduction)
\input{sections/02related_work} % 文獻探討(Related Work)
\input{sections/03method} % 研究方法(Method)
\input{sections/04experiments} % 研究結果(Experiments)
\input{sections/05conclusion} % 結論(Conclusion)
% 參考文獻 References
\refmatter
\bibliographystyle{IEEEtran} % 參考文獻格式(References Style)
\bibliography{backpages/references} % 參考文獻資料庫(References Database)
% 附錄 Appendix
\input{backpages/appendix} % 附錄(Appendix)
\end{document}