-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmaster_thesis.tex
45 lines (32 loc) · 954 Bytes
/
master_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
\documentclass[12pt,a4paper,oneside]{memoir}
%%% Input document metadata
\input{_frontmatter/_meta}
%%% Input style
\input{_style/_style}
%%% Set path to parent graphics directory
\graphicspath{{./graphics/}}
%%% The document itself
\begin{document}
%%% Start Roman page numbering (until content)
\pagenumbering{roman}
%%% Include frontmatter
\include{_frontmatter/_frontmatter}
%%% Add table of contents
\pdfbookmark[0]{Table of Contents}{label:toc}%
\tableofcontents*
%%% Line spacing for better readability of blocks
\setstretch{\blocklinespacing}
%%% Include preamble
\include{content/preamble/_preamble}
%%% Resume arabin page numbering for content
\cleardoublepage
\pagenumbering{arabic}
%%% Include the main content
\include{content/_content}
%%% Include bibliography
\setstretch{1.175}
\bibliography{bibliography/bibliography}
\setstretch{\blocklinespacing}
%%% Include appendices
\include{content/appendix/_appendix}
\end{document}