-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththesis.tex
More file actions
executable file
·175 lines (136 loc) · 5.89 KB
/
thesis.tex
File metadata and controls
executable file
·175 lines (136 loc) · 5.89 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%% Thesis template %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Made by Maximilian Meier, <mmeier@chiba-u.jp>
% designed for platex and Biblatex with biber
% Compile as such:
% make
\documentclass[
icehapcolor,
BCOR=12mm, % 12mm binding corrections, adjust to fit your binding
parskip=half, % new paragraphs start with half line vertical space
open=right, % chapters start on both odd and even pages
cleardoublepage=plain, % no header/footer on blank pages
a4j, dvipdfmx
]{icehapthesis}
% Warning, if another latex run is needed
\usepackage[aux]{rerunfilecheck}
% just list chapters and sections in the toc, not subsections or smaller
\setcounter{tocdepth}{1}
%------------------------------------------------------------------------------
%------------------------------ Language and font: ..--------------------------
%------------------------------------------------------------------------------
% intelligent quotation marks, language and nesting sensitive
\usepackage[autostyle]{csquotes}
%------------------------------------------------------------------------------
%------------------------ For the math environment-----------------------------
%------------------------------------------------------------------------------
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{mathtools}
% nice, small fracs for the text with \sfrac{}{}
\usepackage{xfrac}
%------------------------------------------------------------------------------
%---------------------------- Numbers and Units -------------------------------
%------------------------------------------------------------------------------
\usepackage[
locale=UK,
separate-uncertainty=true,
per-mode=reciprocal-positive-first,
]{siunitx}
\sisetup{math-micro=\text{µ},text-micro=µ, retain-explicit-plus=true}
\DeclareSIUnit{\inch}{inch}
\DeclareSIUnit{\PE}{PE}
%------------------------------------------------------------------------------
%-------------------------------- tables -------------------------------------
%------------------------------------------------------------------------------
\usepackage{booktabs} % stellt \toprule, \midrule, \bottomrule
%------------------------------------------------------------------------------
%-------------------------------- graphics -------------------------------------
%------------------------------------------------------------------------------
\usepackage{graphicx}
\usepackage{grffile}
% allow figures to be placed in the running text by default:
\usepackage{scrhack}
\usepackage{float}
\floatplacement{figure}{htbp}
\floatplacement{table}{htbp}
% keep figures and tables in the section
\usepackage[section, below]{placeins}
%------------------------------------------------------------------------------
%---------------------- customize list environments ---------------------------
%------------------------------------------------------------------------------
\usepackage{enumitem}
%------------------------------------------------------------------------------
%------------------------------ Bibliography ----------------------------------
%------------------------------------------------------------------------------
\usepackage[
backend=biber, % use modern biber backend
autolang=hyphen, % load hyphenation rules for if language of bibentry is not
% german, has to be loaded with \setotherlanguages
% in the references.bib use langid={en} for english sources
sorting=none,
]{biblatex}
\addbibresource{references.bib} % include the bibliography source file
\DefineBibliographyStrings{german}{andothers = {{et\,al\adddot}}}
%------------------------------------------------------------------------------
%------------------------------ Others: ------------------------------------
%------------------------------------------------------------------------------
\usepackage[pdfusetitle,unicode,german,linkbordercolor=chibared]{hyperref}
\usepackage{bookmark}
\usepackage[shortcuts]{extdash}
\usepackage{calrsfs}
% Allow relative imports
\usepackage{import}
%------------------------------------------------------------------------------
%------------------------- Infos about the thesis ----------------------------
%------------------------------------------------------------------------------
\author{John Doe}
% \title{Taus and stuff}
\title{Super interesting analysis topic}
\date{Submitted in Month, 20XX}
% \birthplace{South Pole}
\chair{International Center for Hadron Astrophysics}
\division{Department of Physics}
\thesisclass{Master's Thesis}
\submissiondate{xx.xx 2025}
\firstcorrector{Prof.~Dr.~Dr. Albert Einstein}
\secondcorrector{Prof.~Dr.~Karl Marx}
% tu logo on top of the titlepage
\titlehead{\includegraphics[height=1.5cm]{logos/chiba_logo.pdf}}
\interfootnotelinepenalty=10000
\widowpenalty10000
\clubpenalty10000
\begin{document}
\frontmatter
\maketitle
% Gutachterseite
%\makecorrectorpage
% hier beginnt der Vorspann, nummeriert in römischen Zahlen
\input{content/00_abstract.tex}
\tableofcontents
\mainmatter
% Hier beginnt der Inhalt mit Seite 1 in arabischen Ziffern
\import{content/01_introduction/}{01_introduction.tex}
\import{content/02_theory/}{02_theory.tex}
\import{content/03_methods/}{03_methods.tex}
\import{content/04_analysis/}{04_analysis.tex}
\import{content/05_results/}{05_results.tex}
\import{content/06_summary/}{06_summary.tex}
\cleardoublepage
\appendix
% Hier beginnt der Anhang, nummeriert in lateinischen Buchstaben
\input{content/a_appendix/a_appendix.tex}
\backmatter
\printbibliography
\clearpage
\phantomsection
\addcontentsline{toc}{chapter}{\listfigurename}
\listoffigures
\clearpage
\phantomsection
\addcontentsline{toc}{chapter}{\listtablename}
\listoftables
% \cleardoublepage
% \input{content/eid_versicherung.tex}
\end{document}