-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
84 lines (57 loc) · 1.95 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
% !TeX root = main.tex
% !TeX spellcheck = en_GB
% !TeX encoding = UTF-8
%
% LaTeX code inspired by the LaTeX Thesis Template by Manuel Kuehner
% www.bedienhaptik.de/latex-template/
% ---------------------------------------------------------------------------- %
%
% Document class definition and package loading
\input{01_Preamble/DocClassPackages.tex}
% Settings and new macro definition
\input{01_Preamble/SettingsMacros.tex}
% Paragraphs optimizations (avoids overfull … warnings)
\input{01_Preamble/ParagraphOptimization.tex}
\usepackage{blindtext}
\usepackage{layout}
\begin{document}
\frontmatter
\input{02_FrontMatter/01_CoverPage.tex}
\cleardoublepage
\input{02_FrontMatter/02_BastardTitle.tex}
\cleardoublepage
\input{02_FrontMatter/03_FormalTitle.tex}
\cleartoevenpage
\input{02_FrontMatter/04_Abstract.tex}
\tableofcontents
\thispagestyle{empty}
\addtocontents{toc}{\protect\thispagestyle{empty}}
% This command removes the page number even from the first page of a multi-
% page ToC: tex.stackexchange.com/questions/2995/removing-page-number-from-toc
\enlargethispage{\baselineskip}
\cleardoublepage
\mainmatter
\pagestyle{headings} % this reverts \pagestyle{empty} in the front-matter
\include{03_Chapters/01_introduction}
\include{03_Chapters/02_alus}
\include{03_Chapters/03_angio}
\include{03_Chapters/04_alk}
\include{03_Chapters/05_conclusion}
\cleardoublepage
\addtocounter{chapter}{1}
\addcontentsline{toc}{chapter}{\protect\numberline{\thechapter}Appendix}
\addcontentsline{toc}{subsection}{Bibliography}
\begingroup
\raggedright
\bibliographystyle{05_Bibliography/urlapa} % defines bibliography style
\bibliography{05_Bibliography/bibliography} % bibtex file location
\endgroup
\cleardoublepage
\listoffigures
\addcontentsline{toc}{subsection}{List of Figures}
\cleardoublepage
\input{06_BackMatter/01_Statement.tex}
\cleardoublepage
\input{06_BackMatter/02_CV.tex}
\input{06_BackMatter/03_Acknowledgement.tex}
\end{document}