-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
62 lines (49 loc) · 1.19 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
\documentclass[
11pt,
a4paper,
headsepline,
footsepline,
DIV=13,
BCOR=12mm,
oneside
% twoside
]{scrbook}
\usepackage[]{scrlayer-scrpage}
\pagestyle{scrheadings}
\usepackage[T1]{fontenc}
\usepackage[english,ngerman]{babel}
\usepackage{hyperref}
\hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black
}
\usepackage{graphicx}
\graphicspath{ {./img/} }
\input{commands}
\begin{document}
\input{preamble/_index}
\selectlanguage{english}
\pagenumbering{roman}
\input{preamble/abstract}
\tableofcontents
\newpage
\listoffigures
% \newpage
% \listoftables
\newpage
\pagenumbering{arabic}
\renewcommand{\figureautorefname}{Figure}
\renewcommand{\tableautorefname}{Table}
\renewcommand{\partautorefname}{Part}
\renewcommand{\appendixautorefname}{Appendix}
\renewcommand{\chapterautorefname}{Chapter}
\renewcommand{\sectionautorefname}{Section}
\renewcommand{\subsectionautorefname}{Section}
\renewcommand{\subsubsectionautorefname}{Section}
\input{chapters/_index}
\bibliography{bibliography}
\bibliographystyle{unsrt}
\end{document}