forked from hoang-himself/hcmut-thesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
98 lines (72 loc) · 1.96 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
% 'draft' mode can be used to speed up compilation
\documentclass[final]{hcmut-thesis}
% Include other pdf files, e.g. evaluation sheets
%\usepackage{pdfpages}
% List of symbols
%\usepackage[pageno]{listofsymbols}
% Draft watermark
% https://github.com/callegar/LaTeX-draftwatermark
% References
% Use \cref {} or \Cref{} instead of \ref{}
\usepackage[nameinlink]{cleveref}
% FOR DEMONSTRATION PURPOSES, REMOVE IN PRODUCTION
\usepackage{blindtext}
% Sub-preambles
% https://tex.stackexchange.com/a/395416
% Configurations
\reporttype{Report type h}
\title{Report title H}
\defcouncil{Council H}
\supervisor{
Assoc.~Prof.~Dr.~H1
Dr.~H2
}
%\secretary{Assoc.~Prof.~Dr.~H}
\reviewer{Assoc.~Prof.~Dr.~H}
\stuname{
STUDENT 1: Name (ID 1)
STUDENT 2: Name (ID 2)
STUDENT 3: Name (ID 3)
}
% Allow page breaks inside align* environment
%\allowdisplaybreaks{}
% Makes a lot of things blue, avoid at all costs
%\everymath{\color{blue}}
% Custom commands
%\newcommand*\mean[1]{\bar{#1}}
\begin{document}
\coverpage%
% [openright=true] does not work properly
%\includepdf[pages=-]{chapters/evaluation-sheet-1.pdf}
%\cleardoublepage
%\includepdf[pages=-]{chapters/evaluation-sheet-2.pdf}
%\cleardoublepage
%\includepdf[pages=-]{chapters/evaluation-sheet-3.pdf}
\frontmatter%
\include{chapters/front/declaration.tex}
\include{chapters/front/acknowledge.tex}
\include{chapters/front/abstract.tex}
\tableofcontents
%\clearpage
%\listofsymbols%
\clearpage
\listoftables
\clearpage
\listoffigures
\mainmatter%
% Set depth of numbering depth for counters
\counterwithin{equation}{section}
\counterwithin{table}{section}
\counterwithin{figure}{section}
\include{chapters/main/overview.tex}
\include{chapters/main/methodology.tex}
\include{chapters/main/sys-design.tex}
\include{chapters/main/eval.tex}
\bibliographystyle{plain}
\bibliography{refs/example.bib}
\nocite{*}
\appendix%
\include{chapters/back/design-docs.tex}
\include{chapters/back/test-suite.tex}
\backmatter%
\end{document}