-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.tex
151 lines (118 loc) · 5.95 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
146
147
148
149
150
%------------------------------------------------------------------------------------------------------------------
% Licencse Header
%------------------------------------------------------------------------------------------------------------------
% MIT License
%
% Copyright (c) 2019 Emin Yagmahan
%
% Permission is hereby granted, free of charge, to any person obtaining a copy
% of this software and associated documentation files (the "Software"), to deal
% in the Software without restriction, including without limitation the rights
% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
% copies of the Software, and to permit persons to whom the Software is
% furnished to do so, subject to the following conditions:
%
% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
% AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
% SOFTWARE.
%------------------------------------------------------------------------------------------------------------------
% Document Information
%------------------------------------------------------------------------------------------------------------------
% Author: Emin Yagmahan
% Last Mod. Date: 03.10.2019
%------------------------------------------------------------------------------------------------------------------
% Document Definitions
%------------------------------------------------------------------------------------------------------------------
% KOMA-Script Klasse mit einseitigem Druck, Titelblatt, Inhaltverzeichnis etc.
\documentclass[11pt, paper=a4, parskip=half, titlepage, toc=listof, toc=bib, toc=idx, numbers=noendperiod]{scrreprt}
% Geometry Paket zur Definition der Seitengrößen
\usepackage[left=30mm,right=25mm,top=25mm,bottom=25mm]{geometry}
\usepackage[english, ngerman]{babel}
\usepackage{lmodern}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{makeidx}
\usepackage{url}
% Graphicx Paket zum Handeln von Abbilungen. Alle Abbildungen sind unter dem Pfad "Abbildungen/" abzulegen
\usepackage[]{graphicx}
\graphicspath{Abbildungen/}
\usepackage{textcomp, fixmath}
\usepackage{bm}
\usepackage{listings}
\lstset{basicstyle=\ttfamily\footnotesize, frame=single, numbers=left, tabsize=3, backgroundcolor=\color{light-yellow}, extendedchars, keywordstyle=\color{red}, commentstyle=\color{blue}, language={[LaTex]Tex}}
\usepackage[usenames]{xcolor}
% WIP
\usepackage[backend=biber, sorting=none]{biblatex}
\addbibresource{Literatur/Literaturverzeichnis.bib}
\usepackage{csquotes}
\usepackage{microtype}
\usepackage[colorlinks=true, linkcolor=black, citecolor=black]{hyperref}
\usepackage{textpos}
\usepackage{setspace}
\usepackage{svg}
\usepackage{blindtext}
% Showframe Paket eignet sich zum Debuggen, indem Seitenränder angezeigt werden
%\usepackage{showframe}
% Paket zur Verwaltung von Abkürzungen. Der Parameter "printonlyused" wird lediglich die verwendeten Abkürzungen in das Abkürzungsverzeichnis integrieren
\usepackage[printonlyused]{acronym}
\usepackage{scrhack}
% Angaben zur Abbildungs- und Tabellenunterschriften
% Hinweis: Die Bild- oder Tabellenunterschriften befinden sich linksbündig relativ zur Abbildung, nicht zur Seite.
\usepackage{siunitx,booktabs,threeparttable,caption}
\captionsetup[table]{font=scriptsize,justification=raggedright,singlelinecheck=off}
\captionsetup[figure]{font=scriptsize,justification=raggedright,singlelinecheck=off}
\sisetup{separate-uncertainty=true}
\addtokomafont{captionlabel}{\bfseries}
% Entfernt den Texteinzug beim Erstellen neuer Kapitel
\RedeclareSectionCommand[beforeskip = 0pt, afterindent = false,]{chapter}
\addtokomafont{chapter}{\rmfamily\bfseries}
\addtokomafont{section}{\rmfamily\bfseries}
\addtokomafont{subsection}{\rmfamily\bfseries}
\addtokomafont{chapterentry}{\rmfamily\bfseries}
% Diese Custom-Kommando erstellt einheitliche Unterschrift und Datenfelder (siehe Eidesstattliche Erklärung)
\newcommand*{\SignatureAndDate}[1]{%
\vspace{2cm}
\par\noindent\makebox[2.5in]{\hrulefill} \hfill\makebox[2.0in]{\hrulefill}%
\par\noindent\makebox[2.5in][l]{#1} \hfill\makebox[2.0in][l]{Ort, Datum}%
}%
%------------------------------------------------------------------------------------------------------------------
% Document Beginn
%------------------------------------------------------------------------------------------------------------------
\begin{document}
% Römische Seitennummerierung
\pagenumbering{roman}
\input{Vorgabe/Titelseite.tex}
% Setze Zeilenabstand auf 1.5x
\setstretch{1.5}
% Einbinden der obligatorischen Kapitel
\input{Vorgabe/Sperrvermerk.tex}
\input{Vorgabe/EidesstattlicheErklaerung.tex}
\input{Vorgabe/Kurzfassung_EN.tex}
\input{Vorgabe/Kurzfassung_DE.tex}
\input{Vorgabe/Inhaltsangabe.tex}
% Beginn der arabischen Seitennummerierung
\pagenumbering{arabic}
% Einbinden der inhaltlichen Kapitel.
\input{Kapitel/Einleitung.tex}
\input{Kapitel/Zielsetzung.tex}
\input{Kapitel/Material_und_Methoden.tex}
\input{Kapitel/Ergebnisse.tex}
\input{Kapitel/Diskussion.tex}
\input{Kapitel/Zusammenfassung.tex}
% Huinzufügen der abschließenden obligatorischen Kapitel
% [WIP] Leider keine schönere Methode gefunden, welche die folgenden Kapitel nicht nummeriert, aber dennoch in das Inhaltverzeichnis integriert. Folgende Methode funktioniert.
\input{Vorgabe/Danksagung.tex}
\addcontentsline{toc}{chapter}{Danksagung}
\input{Vorgabe/Abbildungsverzeichnis.tex}
\input{Vorgabe/Tabellenverzeichnis.tex}
\input{Vorgabe/Abkuerzungsverzeichnis.tex}
\addcontentsline{toc}{chapter}{Abkürzungsverzeichnis}
\input{Literatur/Literaturverzeichnis.tex}
\addcontentsline{toc}{chapter}{Literaturverzeichnis}
\input{Vorgabe/Anhang.tex}
\addcontentsline{toc}{chapter}{Anhang}
\end{document}