-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
68 lines (50 loc) · 1.24 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
\documentclass[final]{uowphd}
% final for final layout; leave out for layout that saves some space
% preamble contains additional customisation
\input{preamble}
% stuff for title page
\author{AUTHOR}
\title{TITLE}
\date{eg MONTH YEAR}
\copyrightyear{YEAR}
% dedication, if using -- delete line if no dedication
\dedication{DEDICATION}
\begin{document}
% top-level PDF bookmark that will contain table of contents etc
\pdfbookmark[1]{Front Matter}{frontmatter}
\frontmatter
\maketitle
\input{abstract}
\input{acknowledgements}
% this might have to be here in the end to ensure bookmark is at
% correct spot
% \cleardoublepage
\pdfbookmark[2]{Contents}{toc}
\tableofcontents
\cleardoublepage
\pdfbookmark[2]{List of Figures}{lof}
\listoffigures
\cleardoublepage
\pdfbookmark[2]{List of Tables}{lot}
\listoftables
% if using examples
\cleardoublepage
\listof{xmpl}{List of Examples}
\mainmatter
% replace with own chapters
\input{introduction}
\input{conclusions}
% end replace with own chapters
% if using appendices
\appendix
% replace with own appendices
\input{appendix-userstudy}
% end replace with own appendices
\backmatter
\bibliography{relatedwork}
\end{document}
% for emacs
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End: