-
Notifications
You must be signed in to change notification settings - Fork 15
/
thesis.tex
60 lines (47 loc) · 1.4 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
%------------------------ Preamble and bibliography resources
\documentclass[12pt,oneside]{book}
\input{frontmatter/preamble}
\usepackage{style/title}[PhD]
%\makenomenclature
% Add your bibtex file here
%\addbibresource{library.bib}
%------------------------ Main Document --------------------------
\begin{document}
%-------------- Information For The Title Page
\title{A cool sounding title goes here}
\author{Mr. Author}
\date{2018}
\degree{Doctor of Philosophy (PhD)}
\supervisor[1]{Dr. Doctor} % For multiple supervisors, \supervisor[2]{Supervisor 1 & 2}
\school{Physics}
%-------------- Front Matter
\frontmatter
\maketitle
\declaration
\include{frontmatter/abstract}
\include{frontmatter/acknowledgments}
%-------------- Table of contents
\cleardoublepage
\phantomsection \pdfbookmark[0]{Contents}{Contents}
\tableofcontents
\addcontentsline{toc}{chapter}{\listfigurename}
\listoffigures
\addcontentsline{toc}{chapter}{\listtablename}
\listoftables
%\include{frontmatter/nomenclature}
%\printnomenclature
%-------------- Chapters
\cleardoublepage
\mainmatter
\include{chapters/chapter1}
\include{chapters/chapter2}
%-------------- Appendices
\cleardoublepage
\appendix
\include{appendices/appendix1}
%-------------- Bibliography
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{Bibliography}
\printbibliography
\end{document}