-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmain.tex
68 lines (54 loc) · 1.45 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
\documentclass[mphil,12pt]{hkuthesis}
% Dummy text
\usepackage{lipsum}
% Images
\usepackage{graphicx}
\graphicspath{{contents/images/}}
% Table appearance
\usepackage{booktabs}
% Mathematical facilities
\usepackage{amsmath}
% Numbering figures, tables, and equations without chapter number
\usepackage{chngcntr}
\counterwithout{figure}{chapter}
\counterwithout{table}{chapter}
\counterwithout{equation}{chapter}
% Cross-referencing
\usepackage[hidelinks]{hyperref}
\usepackage{cleveref}
% Bibliography
\usepackage[style=ieee]{biblatex}
\addbibresource{contents/backmatter/references.bib}
% Thesis and author metadata
\title{Insert the Title of Your Thesis Here}
\author{Insert Your Name Here}
\qualifications{B.Sc. \emph{H.K.}; M.A. \emph{C.U.H.K.}}
\date{August 2018}
\begin{document}
% Font matter
\begin{frontmatter}
\abstract[200] % Word count as optional argument
\titlepage
\dedication % Optional
\declaration
\acknowledgements % Optional
\tableofcontents
\listoffigures % Optional
\listoftables % Optional
\end{frontmatter}
% Chapters
\begin{chapters}
\input{contents/chapters/introduction}
\input{contents/chapters/background}
\input{contents/chapters/more-to-follow}
\end{chapters}
% Appendices
\begin{appendices}
\input{contents/appendices/just-an-appendix}
\input{contents/appendices/yet-another-appendix}
\end{appendices}
% Back matter
\begin{backmatter}
\printbibliography[heading=bibintoc,title=References]
\end{backmatter}
\end{document}