forked from RUB-NDS/thesis_layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
85 lines (58 loc) · 1.88 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
%%% TEMPLATE-INFO
%% VERSION : 0.11
\RequirePackage{fix-cm,cmap}
\documentclass[
fontsize=11pt,
paper=a4,
abstract=true,
numbers=noenddot,
listof=totoc,
bibliography=totoc,
oneside,
open=right,
cleardoublepage=plain,
parskip=half+,
BCOR=0cm,
]{scrreprt}
\usepackage[a4paper, margin=2.5cm]{geometry}
\input{misc/preamble}
\input{misc/acronyms.tex}
%% here your document starts
\begin{document}
%% switch to roman paginating for the acknowledgements, table of contents etc.
\pagenumbering{roman} % uncomment this if you like it
%% title page --- made out of expressions defined above
\input{frontpage}
\input{chapters/chap_0}
\pagenumbering{arabic} %switches to arabic numbers for the rest of the text
\setcounter{page}{1}
%%
%% include all your chapters as .tex files,
%% each file contains sections \section{name of section},
%% subsections \subsections{...} and so on...
%%
\input{chapters/chap_1}
\input{chapters/chap_2}
\input{chapters/chap_3}
\input{chapters/chap_4}
\input{chapters/chap_5}
%% include appendix
\appendix
\pagestyle{scrplain} % turn off headers and footers
\printglossaries
%% generate list of figures, optional, remove it if you do not like it
\listoffigures
\KOMAoptions{open=any} % Plaziert Kapitel auch auf linken Seiten
%% generate list of tables, optional, remove it if you do not like it
% \listoftables
%% generate list of algorithms, optional, remove it if you do not like it
\clearpage \phantomsection
\addcontentsline{toc}{chapter}{List of Algorithms}
\chapter{List of AI-Tools}
\input{appendix/tools}
%% generate bibliography with bibtex, the bibfile here is "literature/literature.bib"
\flushbottom
\printbibliography
\KOMAoptions{open=right} % Plaziert Kapitel wieder nur auf rechten Seiten
\input{chapters/chap_appendix}
\end{document}