-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy paththesis.tex
64 lines (52 loc) · 1.41 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
% Preamble and bibliography resources
\documentclass[12pt,oneside]{book}
\input{frontmatter/preamble}
\usepackage{style/title}[honours]
% \makenomenclature
\addbibresource{references.bib}
% Main Document
\begin{document}
% Information For The Title Page
\title{Graph Attention Networks for Compositional Visual Question Answering}
\author{Alexander Mirrington}
\date{\today}
\degree{Bachelor of Information Technology (Honours)}
\supervisor[2]{Dr. Caren Han \\ Dr. Josiah Poon}
\school{Computer Science}
% Front Matter
\frontmatter
\maketitle
\declaration
\include{frontmatter/abstract}
\include{frontmatter/acknowledgments}
% Table of contents
\cleardoublepage
\phantomsection \pdfbookmark[0]{Contents}{Contents}
\tableofcontents
\listoffigures
\listoftables
\listofalgorithms
\newpage
\phantomsection \label{frontmatter:nomenclature}
\include{frontmatter/nomenclature}
\printnomenclature
% Chapters
\cleardoublepage
\mainmatter
\include{chapters/introduction}
\include{chapters/literature}
\include{chapters/methodology}
\include{chapters/evaluation}
\include{chapters/results}
\include{chapters/discussion}
\include{chapters/conclusion}
% Bibliography
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{Bibliography}
\printbibliography
% Appendices
\cleardoublepage
\appendix
\include{appendices/ablation_visualisations}
\end{document}