-
Notifications
You must be signed in to change notification settings - Fork 6
/
Master Thesis.tex
108 lines (90 loc) · 2.9 KB
/
Master 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
%% Dokumentenklasse (Koma Script) -----------------------------------------
\documentclass[%
%draft, % Entwurfsstadium
final, % fertiges Dokument
% --- Paper Settings ---
paper=a4,% [Todo: add alternatives]
paper=portrait, % landscape
pagesize=auto, % driver
% --- Base Font Size ---
fontsize=11pt,%
% --- Koma Script Version ---
version=last, %
]{scrreprt} % Classes: scrartcl, scrreprt, scrbook
% Encoding der Dateien (sonst funktionieren Umlaute nicht)
% Fuer Linux -> utf8
% Fuer Windows, alte Linux Distributionen -> latin1
% Empfohlen latin1, da einige Pakete mit utf8 Zeichen nicht
% funktionieren, z.B: listings, soul.
%\usepackage[latin1]{inputenc}
%\usepackage[ansinew]{inputenc}
\usepackage[utf8]{inputenc}
%\usepackage{ucs}
%\usepackage[utf8x]{inputenc}
%%%%%%%%%%%%%%%%%%%%%%%%%
% SET LANGUAGE %
%%%%%%%%%%%%%%%%%%%%%%%%%
\def\lang{ngerman} % Options: english or ngerman
% The used tool and the reason; remove command if it does not apply
\def\declareUseOfGenerativeAITool{ChatGPT~4}
%%% Preambel
\input{preambel/settings}
\input{preambel/preambel}
\author{Max Musterman}
\thesis{Bachelor Thesis}
%\thesis{Master Thesis}
\title{Titel der Abschlussarbeit}
\academicTitle{Bachelor of Science}
%\academicTitle{Master of Science}
\firstReferee{Prof. Dr. Tim Mustermann}
\secondReferee{Prof. Dr. Max Häuser}
%
%%%% Neue Befehle
\input{macros/newcommands}
\input{macros/TableCommands}
%%% Silbentrennung
\input{preambel/Hyphenation}
%% Dokument Beginn %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
% Deckblatt
\input{content/00_Titel}
% Nicht vergessen zu Entfernen wenn alles Fertig:
%\listoftodos
% Abstract - Kurzfassung der Arbeit ohne Wertung
\input{content/00_Abstract}
\cleardoublepage
\frontmatter
\cleardoublepage
% Inhaltsverzeichnis in den PDF-Links eintragen
\pdfbookmark[1]{Inhaltsverzeichnis}{toc}
\tableofcontents
\cleardoublepage
% Hauptteil
\mainmatter
\input{content/01_Einfuehrung}
\input{content/02_Hintergrund}
\input{content/03_Konzept}
\input{content/04_Realisierung}
\input{content/05_Abschluss}
% Anhang (Bibliographie darf im deutschen nicht in den Anhang!)
\bibliography{bib/BibtexDatabase}
\clearpage
% Symbolverzeichnis (Begriffserklärung)
% Damit die Begriffe hinzugefügt werden muss in Texmaker unter Optionen - Konfiguren
% Der Makeindex Befehl folgendermaßen geändert werden: "/usr/texbin/makeindex" %.nlo -s nomencl.ist -o %.nls
\IfDefined{printindex}{\printindex}
\IfDefined{printnomenclature}{\printnomenclature}
% 'Symbolverzeichnis' ins Inhaltsverzeichnis
\addcontentsline{toc}{chapter}{Abkürzungsverzeichnis}
% Abbildungs- und Tabellenverzeichnis
\listoffigures
\listoftables
\lstlistoflistings.
% Anhang
\appendix
% 'Anhang' ins Inhaltsverzeichnis
%\phantomsection
%\addcontentsline{toc}{part}{Anhang}
\input{content/Z-Anhang}
%% Dokument ENDE %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{document}