-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
45 lines (32 loc) · 1.15 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
\documentclass[12pt]{CardMathsThesis}
\input{packages.tex}
\begin{document}
\pagestyle{none}
\maketitle
\pagestyle{normal}
\begin{romanpages}
\input{Frontmatter/abstract.tex}
\input{Frontmatter/acknowledgements.tex}
\input{Frontmatter/dissemination.tex}
\tableofcontents
\listoffigures
\listoftables
\lstlistoflistings
\end{romanpages}
\pagenumbering{arabic}
\input{chapters/01_introduction/main.tex}
\input{chapters/02_literature_review/main.tex}
\input{chapters/03_queueing_model/main.tex}
\input{chapters/04_game_theoretic_model/main.tex}
\input{chapters/05_numerical_results/main.tex}
\input{chapters/06_agent_based_extension/main.tex}
\input{chapters/07_conclusion/main.tex}
\bibliographystyle{plain}
\bibliography{bibliography.bib}
\appendix
% Use phantom section to make the hyperlink in the table of contents point
% to the correct page. Without it the hyperlink points to the bibliography.
\phantomsection
\addcontentsline{toc}{chapter}{Appendices}
\input{chapters/00_appendix/main.tex}
\end{document}