-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy paththesis.tex
130 lines (99 loc) · 2.39 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
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
%
% NTHU Template
% 2014 Yao Wei
%
% This file is licensed under CC0.
% https://creativecommons.org/publicdomain/zero/1.0/
%
\documentclass[12pt]{article}
% Lint
\RequirePackage[l2tabu, orthodox]{nag}
% Fonts
\usepackage{mathptmx}
\usepackage[T1]{fontenc}
\usepackage{CJKutf8}
% Layout
\usepackage[a4paper, top=2.54cm, bottom=2.54cm, left=3.17cm, right=2.54cm]{geometry}
\usepackage{abstract}
% Paragraph
\usepackage{indentfirst}
\usepackage{setspace}
% Watermarks
\usepackage{wallpaper}
\CenterWallPaper{.18}{./assets/nthu_watermark.eps}
\setlength{\wpXoffset}{0.315cm}
% Citations
\usepackage[backend=bibtex,sorting=none]{biblatex}
\bibliography{thesis}
\renewbibmacro{in:}{}
% Figures
\usepackage{float}
\usepackage{subcaption}
\usepackage{rotating}
\begin{document}
\begin{CJK}{UTF8}{bkai}
\begin{titlepage}
\begin{center}
\Large 國立清華大學資訊工程學研究所 \\
\Large 碩士論文 \\
%\Large (初稿)\\
\vspace*{10ex}
\huge 這是個假的中文標題 \\
\vspace*{1ex}
\huge Lorem Ipsum Dolor Sit Amet \\
\null
\vfill
\Large
\begin{tabular}{r@{} @{}l}
學號:~&123456789 \\
姓名:~&王小明 \\
&John Doe \\
指導教授:~&某某某~教授 \\
&Prof. Someone Else \\
\end{tabular}
\vspace*{2ex}
\Large 中華民國 100 年 0 月
\end{center}
\end{titlepage}
\doublespacing
\pagenumbering{roman}
\setcounter{page}{3}
\addcontentsline{toc}{section}{Abstract}
\renewcommand{\abstractnamefont}{\normalfont\bfseries}
\renewcommand{\abstracttextfont}{\normalfont}
\setlength{\absleftindent}{0pt}
\setlength{\absrightindent}{0pt}
\begin{abstract} % Abstract
Abstract Page
\end{abstract}
\clearpage
\addcontentsline{toc}{section}{Acknowledgements}
\begin{center}
\textbf{Acknowledgements}
\end{center}
Acknowledgements Page
\clearpage
\singlespacing
\tableofcontents % Table of contents
\clearpage
\addcontentsline{toc}{section}{List of Figures}
\listoffigures % List of figures
\clearpage
\addcontentsline{toc}{section}{List of Tables}
\listoftables % List of tables
\clearpage
\doublespacing
%\setlength{\parskip}{12pt}
\pagenumbering{arabic}
\section{Introduction}
\section{Related Work}
\section{Design and Implementation}
\section{Performance Evaluation}
\section{Conclusions}
\clearpage
\addcontentsline{toc}{section}{References}
\singlespacing
%\setlength{\parskip}{0pt}
\printbibliography
\end{CJK}
\end{document}