-
Notifications
You must be signed in to change notification settings - Fork 14
/
Thesis.tex
76 lines (53 loc) · 1.6 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
% Detect and warn about obsolete latex commands.
% NAG will check for many common mistakes, and give some hints on
% what to use instead. However, you should always refer to l2tabu for a
% more detailed explanation of the whats and whys: it gives more
% information than can be possibly pressed into two lines of error
% message. Orthodox checks for pitfalls that are not technically
% incorrect. If you know what you’re doing, omit orthodox.
\RequirePackage[l2tabu, orthodox]{nag}
\documentclass[british,a4paper,11pt,twoside]{ThesisStyle}
\makeatletter
\title{Lorem Ipsum}\let\thetitle\@title
\author{Foo von Bar}\let\theauthor\@author
\makeatother
\input{FormatAndDefsBasic}
% Comment out to remove the draft note
\newcommand{\draftnote}{\textcolor[gray]{0.5}{\textbf{DRAFT -- \today}}}
\input{FormatAndDefsThesisExtra}
\addbibresource{JNFull.bib}
\addbibresource{ThesisBibliography.bib}
\begin{document}
\frontmatter
\input{TitlePageKCL}
%\input{TitlePageUCL}
\dominitoc
\copyrightpage{\the\year}{\theauthor}
\declarationpage{\theauthor}
\cleardoublepage
\chapter{Abstract}
\input{Abstract}
\cleardoublepage
\chapter{Impact statement}
An impact statement is often required.
\cleardoublepage
\chapter{Acknowledgments}
\input{Acknowledgments}
\cleardoublepage
\tableofcontents
% KCL and UCL want a list of tables and figures
\clearpage
\phantomsection
\mtcaddchapter[\listtablename]
\listoftables
\clearpage
\phantomsection
\mtcaddchapter[\listfigurename]
\listoffigures
\mainmatter
\include{Introduction}
\include{Methods}
\include{Conclusion}
\backmatter
\printbibliography[heading=bibintoc]
\end{document}