-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
145 lines (126 loc) · 3.18 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
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
\documentclass[%
a4paper,%
twoside,%
listof = totoc,%
bibliography = totoc,%
headsepline,%
cleardoublepage = empty,%
parskip = half,%
numbers=noenddot%
]{scrbook}
\usepackage[utf8]{luainputenc}
\usepackage[english,ngerman]{babel}
\usepackage{fontspec}
\usepackage[hyperref,dvipsnames]{xcolor}
\usepackage{lipsum}
\usepackage{csquotes}
\usepackage[automark]{scrlayer-scrpage}
\usepackage[%
decimalsymbol = comma,%
binary-units = true%
]{siunitx}
\usepackage[%
backend = biber,%
sortcites = true,%
bibstyle = alphabetic,%
citestyle = alphabetic,%
giveninits = true,%
useprefix = true,%
minnames = 1,%
minalphanames = 3,%
maxalphanames = 4,%
maxbibnames = 99,%
maxcitenames = 3,%
natbib = true,%
eprint = true,%
backref = true%
]{biblatex}
\setcounter{biburllcpenalty}{7000}
\setcounter{biburlucpenalty}{8000}
\bibliography{bibliography}
\DefineBibliographyStrings{ngerman}{
backrefpage = {zitiert auf S\adddot},
backrefpages = {zitiert auf S\adddot},
andothers = {et\ \addabbrvspace al\adddot},
bibliography = {Literaturverzeichnis}
}
\setlength\bibitemsep{2\itemsep}
% This package enables micro-typographic extensions.
\usepackage{microtype}
\setcounter{tocdepth}{2}
% Allow '\\' on the title page
\usepackage{kvoptions-patch}
% The package helps to design the title page.
\usepackage[
title = {Titel},%
author = {Max Musterstudent},%
type = master,%
institute = fmi,%
course = cs,%
examiner = {Prof.\ Dr.\ Max Musterprofessor},%
supervisor = {Dr.\ Max Musterbetreuer},%
startdate = {1.\ Januar 2018},%
language = german,%
enddate = {1.\ Juli 2018}%
]{uni-stuttgart-cs-cover/scientific-thesis-cover}
% The hyperref package facilitates the creation of PDF documents and allows to
% create links inside the PDF document. This package should be loaded last but
% before the geometry package.
\usepackage{hyperref}
\hypersetup{%
pdftitle = {Titel},%
pdfauthor = {Max Musterstudent},%
breaklinks = true,%
bookmarksnumbered = true,%
bookmarksopen = true,%
bookmarksopenlevel = 1,%
breaklinks = true,%
pdfstartview = Fit,%
pdfpagelayout = SinglePage,%
filecolor = darkblue,%
colorlinks = false,%
}
% The geometry package allows the user to change the page layout. This package
% should be loaded last.
\usepackage[%
left = 3cm,%
right = 3cm,%
top = 2.5cm,%
bottom = 2.5cm,%
headsep = 18pt,%
footskip = 30pt,%
includehead,%
includefoot%
]{geometry}
\addto\captionsngerman{\renewcommand\abstractname{Kurzfassung}}
\begin{document}
\pagenumbering{roman}
\Titelblatt
%Eigener Seitenstil fuer die Kurzfassung und das Inhaltsverzeichnis
\deftriplepagestyle{preamble}{}{}{}{}{}{\pagemark}
%Doku zu deftripstyle: scrguide.pdf
\pagestyle{preamble}
\renewcommand*{\chapterpagestyle}{preamble}
\section*{Kurzfassung}
\lipsum
\section*{Abstract}
\lipsum
\foreignlanguage{english}{}
\cleardoublepage
\tableofcontents
\listoffigures
\listoftables
\chapter{Einleitung}
\pagenumbering{arabic}
\lipsum\autocite{turing1936}
\chapter{Hauptteil}
\lipsum
\chapter{Schluß}
\lipsum
\clearpage
\printbibliography
Alle URLs wurden zuletzt am 01.\,07.\,2018 geprüft.
\pagestyle{empty}
\renewcommand*{\chapterpagestyle}{empty}
\Versicherung
\end{document}