forked from HKFoggyU/hkust-thesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmythesis.tex
121 lines (104 loc) · 3.48 KB
/
mythesis.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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% HKUST Thesis LaTeX Template
%% Version 0.5.3 (2021-11-06)
%%
%% Check the project website for latest updates:
%% https://github.com/HKFoggyU/hkust-thesis
%%
%% Contributors:
%% https://github.com/HKFoggyU/hkust-thesis/graphs/contributors
%%
%% License:
%% LaTeX Project Public License (version 1.3c)
%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[
%customlatinfont = windows,
%custombibstyle = nature,
%displaycommittee = true,
]{hkustthesis}
%% Thesis information
\hkustsetup {
%% Please wrap the items with {}.
%% If one item is not applicable, just leave it {}.
%% Please do not leave any blank lines.
info = {
degree = {phd},
title = {Triggering\\the Forth Impact},
keywords = {Neon, Genesis, Evangelion},
grade = {},
student-id = {},
author = {Cruel Angel},
school = {School of SEELE},
department = {Department of NERV},
program = {Human Instrumentality Project},
major = {},
supervisor = {Prof. Adams},
%% Co-supervisor, if any
co-supervisor = {Prof. Lilith},
submit-month = {August 2021}, % Only <month year>
submit-date = {13 August 2021}, % <date month year>
defend-date = {8 March 2021},
depthead = {Prof. Ikari Yui, Head of Department},
reviewer = {Prof. AAA (Chairperson),
Prof. BBB (Supervisor),
Prof. CCC (Co-Supervisor),
Prof. DDD,
Prof. EEE},
reviewerdept = {Department of Electronic and Computer Engineering,
Department of ECE,
Department of ECE,
Department of ECE,
Department of Physics},
reviewerext = {Prof. FFF (External Examiner),
Department of EE\\{University of UU, at VV}},
city = {Geo Front},
}
}
%% Import extra packages
%% \usepackage{...}
%% Import bib file for bibliography
\addbibresource{mythesis.bib}
\begin{document}
%% -------------------------------------------------
%% Thesis structure: In the order of
%% -------------------------------------------------
%% Titlepage -> Authorization -> Signature ->
%% Acknowledgements ->
%% TOC -> List of Figures -> List of Tables ->
%% Abstract ->
%% -------------------------------------------------
%% <Main body> ->
%% -------------------------------------------------
%% References -> (Appendices)
%% -------------------------------------------------
\frontmatter
\maketitle
\authorization
\signaturepage
\input{chapters/Pre_Acknowledgements.tex}
\tableofcontents
\listoffigures
\listoftables
%% Dedication and Preface are optional
%\input{chapters/Pre_Dedication.tex}
%\input{chapters/Pre_Preface.tex}
\input{chapters/Pre_Abstract.tex}
%% -------------------------------------------------
%% Main body
%% -------------------------------------------------
\mainmatter
\input{chapters/Introduction.tex}
\input{chapters/chapter_XXX.tex}
\input{chapters/Conclusions.tex}
%% -------------------------------------------------
%% References
%% -------------------------------------------------
\printbibliography[heading=bibintoc,title=References]
%% -------------------------------------------------
%% Appendices
%% -------------------------------------------------
\appendix
\input{chapters/Appendix_Publications.tex}
\input{chapters/Appendix_Requirements.tex}
\end{document}