-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
57 lines (38 loc) · 1.05 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
55
56
57
\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}
\newenvironment{dedication}{\chapter*{}\begin{flushright}\itshape}{\normalfont\end{flushright}}
% 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}
\begin{dedication}
Do the hard work, \textbf{especially} when you don't feel like it.
\end{dedication}
\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}