-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.tex
54 lines (43 loc) · 1.35 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
\documentclass{au-thesis}
\usepackage{todonotes}
%The following command creates a 7m wide margin for the todo notes without changing the text width
\geometry{paperwidth=260mm, right=8cm, marginparwidth=7cm}
% --------------------------- Document Info -------------------------------------------------------
\title{Title}
\subtitle{Subtitle} % Optional
\author{Author}
\studentid{xxxxxxxxx}
\newdate{date}{01}{02}{2024} % Date is specified in three parts to use datetime for formatting
\supervisor{Clever Guy}
% \cosupervisor{Another Guy}
\department{Department of Things}
\subject{Master Thesis for the M.Sc.\ in Spam at Aarhus University}
\keywords{Keyword1, Keyword2, Keyword3}
% --------------------------- Document structure --------------------------------------------------
\begin{document}
% ** Frontmatter **
\maketitle
\frontmatter
\input{frontmatter/00copyright}
\input{frontmatter/01abstract}
\input{frontmatter/02acknowledgements}
\tableofcontents
\clearpage
\input{listofacronyms}
\listoffigures
\clearpage
\listoftables
% ** Mainmatter **
\mainmatter{}
\input{chapters/00introduction}
\input{chapters/01background}
\input{chapters/98results}
\input{chapters/99conclusion}
% ** Backmatter **
\backmatter{}
% Reference List
\printbibliography[heading=bibintoc, title=References]{}
% Appendices
\appendix
\input{appendices/00testappendix}
\end{document}