-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocument.tex
More file actions
118 lines (87 loc) · 3.58 KB
/
document.tex
File metadata and controls
118 lines (87 loc) · 3.58 KB
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
\documentclass[
paper=a4,
fontsize = 12pt, % Fontsize of the document
headsepline, % Line under the header
titlepage, % Insert a full titlepage
numbers=noenddot,
headings=optiontohead, %Option for chapter,section... for page header.
]{scrbook}
% Include preamble
\input{./preamble/packages.tex}
\input{./preamble/styles.tex}
\input{./preamble/newcommands.tex}
\RedeclareSectionCommands[tocdynnumwidth=true]{chapter,section,subsection,subsubsection}
% Add Bibliography
\addbibresource{literature/literature.bib}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%--------------------------------------- BEGIN DOCUMENT -----------------------------------------%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\frontmatter
\setkomafont{pagenumber}{\upshape \sffamily}
\cofoot[\pagemark]{}
\rofoot[]{}
%%%%%%%%%%%%%%%%%%%
% INSERT TITLEPAGE:
\input{./tex/titlepage}
\input{./tex/abstract}
%%%%%%%%%%%%%%%%%%%%%%%%%%%
% INSERT TABLE OF CONTENTS:
\tableofcontents
\listoffigures
\listoftables
\input{./tex/list_of_symbols}
\printnomenclature
\mainmatter
\setkomafont{pagenumber}{\sffamily\upshape}
\rofoot[]{\pagemark}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%----------------------------------------- BEGIN BODY -------------------------------------------%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%
% --- INTRODUCTION --- %
%%%%%%%%%%%%%%%%%%%%%%%%
\input{./tex/Introduction/introduction.tex}
%%%%%%%%%%%%%%%%%%%%%%%%
% --- THEORY --- %
%%%%%%%%%%%%%%%%%%%%%%%%
\part{Theory}\label{part:theory}
%%%%%%%%%%%%%%%%%%%%%
% ------ CH1 ------ %
%%%%%%%%%%%%%%%%%%%%%
\input{tex/theory/gravitational_waves.tex}
\input{tex/theory/emris.tex}
\input{tex/theory/cosmology.tex}
\input{tex/theory/bayesian_inference.tex}
\input{tex/theory/lisa.tex}
\input{tex/theory/galaxy_catalog.tex}
\input{tex/theory/parameter_estimation.tex}
\input{./tex/theory/hubble_constant_inference.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%
% --- IMPLEMENTATION --- %
%%%%%%%%%%%%%%%%%%%%%%%%%%
\part{Implementation}\label{part:implementation}
\input{./tex/implementation/implementation.tex}
%%%%%%%%%%%%%%%%%%%%%%%%
% --- EVALUATION --- %
%%%%%%%%%%%%%%%%%%%%%%%%
\part{Evaluation}\label{part:evaluation}
\input{tex/evaluation/galaxy_catalog_only.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%
% --- Conclusion --- %
%%%%%%%%%%%%%%%%%%%%%%%%%
\input{./tex/Conclusion-Outlook/conclusion.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%------------------------------------------ APPENDIX --------------------------------------------%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\appendix
\part*{Appendix}\label{part:appendix}
\input{./tex/appendix}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%----------------------------------------- LITERATURE -------------------------------------------%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\printbibliography
\end{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%---------------------------------------- END DOCUMENT ------------------------------------------%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%