-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
62 lines (45 loc) · 1.63 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
\documentclass[oneside,
fontsize=12pt, % default font size 12pt
paper=a4, % DIN A4 page format
numbers=noenddot, % remove dots behind chapter numbers (e.g. 1.5 not 1.5.)
% listof=totoc, % add list of figures, tables, etc. to ToC
listof=entryprefix, % add entry name to figures, tables, etc.
listof=nochaptergap, % no chapter gap for figures, tables, etc.
bibliography=totoc, % add bibliography to ToC but without a chapter number
parskip=half, % half line spacing between paragraphs
% headings=openany
]{scrbook}
%\KOMAoptions{twoside=false}
\include{preamble} % load preamble
\begin{document}
\newfloatcommand{capbtabbox}{table}[][\FBwidth]
\include{framework/titlepage} % title page
% Roman numbering
\frontmatter
\pagenumbering{Roman}
\include{framework/abstract} % Abstract
\tableofcontents % Contents
%\listoffigures % List of Figures
%\listoftables % List of Tables
\include{framework/abbreviations} % Abbreviations
% Content
\mainmatter
\include{content/SHiP}
\include{content/Cosmics}
\include{content/Analysis}
\include{content/Discussion}
\include{content/Outlook}
% Appendices
%\appendix
%
%\begin{appendices}
% \include{appendix/A_moreFigures}
%\end{appendices}
% Bibliography
\begin{singlespace}
\printbibliography
\end{singlespace}
\include{content/code}
% Declaration of Authorship (in German)
\include{framework/declaration_of_authorship}
\end{document}