-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.tex
72 lines (53 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
63
64
65
66
67
68
69
70
71
72
% This is a simple, plain Latex template package for the creation of Bachelor's and
% Master's theses.
% The template is tailored to the specific needs of engineering students pursuing a degree
% at the University of Lübeck.
%
% For copyright information, see the accompanying LICENSE file.
%
% The current version of this template can always be found at
%
% https://github.com/gonike/thesis-template
%
% Eike Petersen, April 2017, with contributions from Christian Hoffmann and other members
% of the Institute for Electrical Engineering in Medicine (IME), University of Lübeck.
%
\documentclass[11pt, a4paper, headsepline, BCOR = 1cm]{scrbook}
% BCOR = Binding correction. Adjusts inner page margin for bound books.
% headsepline produces a horizontal line under chapter title on page headers
\input{preamble}
\begin{document}
\frontmatter
\input{tex/frontmatter/titlepage}
\cleardoublepage
\KOMAoption{headsepline}{false}
\setcounter{page}{1}
\input{tex/frontmatter/eidesstattliche_erk}
\cleardoublepage
\input{tex/frontmatter/abstract_en}
\cleardoublepage
\input{tex/frontmatter/abstract_de}
\cleardoublepage
\KOMAoption{headsepline}{true}
\tableofcontents
\mainmatter
\input{tex/mainmatter/introduction}
\input{tex/mainmatter/materials_and_methods}
\input{tex/mainmatter/concept}
\input{tex/mainmatter/results}
\input{tex/mainmatter/discussion}
\input{tex/mainmatter/conclusion}
\backmatter
% Print list of mathematical symbols
\printnoidxglossaries
\listoffigures
%\listoftables
\printbibliography
% List of fixme notes
\listoffixmes
\end{document}
%%%%% Emacs-related stuff
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End: