generated from diegoferigo/classicthesis-uom
-
Notifications
You must be signed in to change notification settings - Fork 1
/
thesis.tex
135 lines (111 loc) · 3.29 KB
/
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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
% !TeX program = pdflatex
% !TeX encoding = UTF-8
% !TeX spellcheck = en_GB
% !BIB program = biber
\RequirePackage{silence} % :-\
% \WarningFilter{scrreprt}{Usage of package `titlesec'}
% \WarningFilter{scrreprt}{Activating an ugly workaround}
\WarningFilter{titlesec}{Non standard sectioning command}
\documentclass[
oneside,
%twoside,
openright,
titlepage,
numbers=noenddot,
%1headlines,
headinclude,
%footinclude,
%cleardoublepage=empty,
%abstract=on,
BCOR=5mm,
paper=a4,
fontsize=11pt
]{scrreprt}
% Fix TOC font in TeX Live 2022
% https://tex.stackexchange.com/a/654221
\PassOptionsToPackage{nopatch}{microtype}
% Importing here pgfplots as early as possible
\usepackage[dvipsnames]{xcolor}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usepgfplotslibrary{groupplots}
% Cache TIKZ images. Requires custom latexmkrc.
% \usetikzlibrary{external}
% \tikzexternalize[prefix=tikzexternalize/]
% =======================================
% Note: Make all your adjustments in here
% =======================================
\input{classicthesis-config}
% ==============
% Bibliographies
% ==============
\addbibresource{zotero.bib}
% ===========
% Hyphenation
% ===========
%\hyphenation{put special hyphenation here}
% Sequential numbering document-wise of footnotes
\counterwithout{footnote}{chapter}
% ==================
% GO!GO!GO! MOVE IT!
% ==================
\begin{document}
\frenchspacing
\raggedbottom
\selectlanguage{british} % american ngerman
%\renewcommand*{\bibname}{new name}
%\setbibpreamble{}
%\pagenumbering{roman}
\pagenumbering{arabic}
\pagestyle{plain}
% ===========
% Frontmatter
% ===========
%\include{FrontBackmatter/dirty_titlepage}
\include{FrontBackmatter/cover}
%\include{FrontBackmatter/titlepage}
%\include{FrontBackmatter/titleback}
\cleardoublepage\include{FrontBackmatter/contents}
%\cleardoublepage\include{FrontBackmatter/dedication}
\cleardoublepage\include{FrontBackmatter/abstract}
%\cleardoublepage\include{FrontBackmatter/publications}
%\cleardoublepage\include{FrontBackmatter/foreword}
\clearpage\include{FrontBackmatter/declaration}
\clearpage\include{FrontBackmatter/copyright}
\clearpage\include{FrontBackmatter/acknowledgments}
% ==========
% Mainmatter
% ==========
\cleardoublepage
\pagestyle{scrheadings}
%\pagenumbering{arabic}
%\setcounter{page}{90}
% use \cleardoublepage here to avoid problems with pdfbookmark
\cleardoublepage
\include{Chapters/prologue}
%\include{Chapters/covid_impact_statement.tex}
\part{Background and Fundamentals}\label{part:foundations}
\include{Chapters/Part_1/chapter_1}
\include{Chapters/Part_1/chapter_2}
\include{Chapters/Part_1/chapter_3}
\include{Chapters/Part_1/chapter_4}
\part{Contribution}\label{part:contribution}
\include{Chapters/Part_2/chapter_5}
\include{Chapters/Part_2/chapter_6}
\include{Chapters/Part_2/chapter_7}
\include{Chapters/Part_2/chapter_8}
% ==========
% Backmatter
% ==========
\cleardoublepage\include{Chapters/epilogue}
\cleardoublepage\include{FrontBackmatter/bibliography}
% \cleardoublepage\include{FrontBackmatter/colophon}
\appendix
\renewcommand{\thechapter}{\Alph{chapter}}
\cleardoublepage
\part{Appendix}
\include{Chapters/appendix}
% =====================================
% Game Over: Restore, Restart, or Quit?
% =====================================
\end{document}