-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
53 lines (35 loc) · 902 Bytes
/
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
\documentclass[12pt,a4paper,twoside]{report}
% Import all the packages
\input{settings/imports}
% Set margins
\input{settings/margins}
% Set line spacing
\input{settings/line_spacing}
% Setting for the table of contents
\input{settings/table_of_contents.tex}
% Additional commands
\input{settings/commands.tex}
% Add bibliography source
\addbibresource{document/bibliography.bib}
\begin{document}
\input{document/title-page}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[LE,RO]{\leftmark}
\fancyfoot[C]{\thepage}
\pagenumbering{roman}
\input{document/dedication.tex}
\tableofcontents
\newpage
\listoffigures
\newpage
\input{document/acknowledgements.tex}
\newpage
\input{document/abstract.tex}
\newpage
\pagenumbering{arabic}
\input{document/content}
\newpage
\addcontentsline{toc}{chapter}{Bibliography}
\printbibliography
\end{document}