masterthesis/MA-Master.tex

129 lines
3.5 KiB
TeX
Raw Normal View History

2018-05-09 13:14:45 +02:00
\documentclass[12pt,a4paper,twoside,parskip=half-,headsepline,headinclude]{scrreprt} % Grundgröße 12pt, zweiseitig
2018-05-09 13:05:55 +02:00
% Packages from template
2018-05-09 13:14:45 +02:00
\usepackage[headsepline,automark]{scrlayer-scrpage} % Seitenköpfe automatisch
2018-05-09 13:05:55 +02:00
\KOMAoptions{headinclude} % Fix
\usepackage[german]{babel} % Sprachpaket für Deutsch (Umlaute, Trennung,deutsche Überschriften)
2018-08-08 18:49:38 +02:00
\usepackage{graphicx} % Graphikeinbindung
2018-09-03 10:47:27 +02:00
\usepackage[hidelinks]{hyperref} % Hyperref (alles klickbar, Bookmarks)
2018-05-09 13:05:55 +02:00
\usepackage{amssymb} % Math. Symbole aus AmsTeX
\usepackage[utf8]{inputenc} % Umlaute
% Custom packages
\usepackage[autostyle=true,german=quotes]{csquotes} % Anführungszeichen mit \enquote{}
\usepackage{textcomp} % Zusätzliches Package für °C
\usepackage{listings} % Codesnippets
\usepackage{scrhack} % Hack for lstlisting i suspect :-/
\usepackage{xcolor}
\usepackage{float}
\usepackage{soul}
\usepackage{verbatim} % für comment-environment
\usepackage{amsmath}
\usepackage{enumitem} % enumerate mit benutzerdefinierten Labels
2018-06-03 15:18:24 +02:00
\usepackage{caption}
\captionsetup[table]{skip=8pt}
2018-09-03 16:02:09 +02:00
\usepackage[numbers,round]{natbib} % Let's try alphadin bibliography style
2018-05-09 13:05:55 +02:00
% Setup für Codeblocks
\lstset{
% Optionen
breaklines=true,
breakatwhitespace=true,
breakautoindent=true,
frame=single,
%framexleftmargin=19pt,
inputencoding=utf8,
%language=awk,
%numbers=left,
%numbersep=8pt,
showspaces=false,
showstringspaces=false,
tabsize=1,
%xleftmargin=19pt,
captionpos=b,
% Styling
basicstyle=\footnotesize\ttfamily,
commentstyle=\footnotesize,
keywordstyle=\footnotesize\ttfamily,
numberstyle=\footnotesize,
stringstyle=\footnotesize\ttfamily,
}
% Hack für Sonderzeichen in Codeblocks
\lstset{literate=%
{Ö}{{\"O}}1
{Ä}{{\"A}}1
{Ü}{{\"U}}1
{ß}{{\ss}}1
{ü}{{\"u}}1
{ä}{{\"a}}1
{ö}{{\"o}}1
{°}{{${^\circ}$}}1
}
% Befehl für TODO-Markierungen
2018-05-19 10:49:02 +02:00
\newcommand{\todo}[1]{\textcolor{blue}{\emph{TODO: #1}}}
2018-05-09 13:05:55 +02:00
% Befehl für Entwürfe und grobe Pläne
%\newenvironment{draft}{\par\color{orange}\begin{center}Entwurf / Konzept\end{center}\hrule}{\hrule\par}
% Broken citation needs broken command
\newcommand\mathplus{+}
% Festlegung Kopf- und Fußzeile
\defpagestyle{meinstil}{%
{\headmark \hfill}
{\hfill \headmark}
{\hfill \headmark\hfill}
(\textwidth,.4pt)
}{%
(\textwidth,.4pt)
{\pagemark\hfill Jan Philipp Timme}
{Version 1.0 vom \today \hfill \pagemark}
{Version 1.0 vom \today \hfill \pagemark}
}
\pagestyle{meinstil}
\raggedbottom
\renewcommand{\topfraction}{1}
\renewcommand{\bottomfraction}{1}
2018-07-02 15:49:36 +02:00
2018-05-09 13:05:55 +02:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Beginn des Dokuments (Titelseite und der ganze Krempel)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\input{MA-Titelseite.tex}
\input{MA-Erklaerung.tex}
2018-05-09 13:05:55 +02:00
% Inhaltsverzeichnis
\pdfbookmark[0]{Inhalt}{contents}
2018-05-09 13:05:55 +02:00
\tableofcontents
2018-09-03 10:53:15 +02:00
% Abbildungsverzeichnis, falls genug vorhanden sind
2018-05-09 13:05:55 +02:00
%\listoffigures
2018-09-03 10:53:15 +02:00
% Codeverzeichnis, falls genug vorhanden ist
2018-06-03 15:18:24 +02:00
%\lstlistoflistings
2018-09-03 10:53:15 +02:00
% Tabellenverzeichnis, falls genug vorhanden sind
2018-05-09 13:05:55 +02:00
%\listoftables
2018-09-03 10:53:15 +02:00
% Sicherstellen, dass Inhalte auf der nächsten neuen Seite beginnen
2018-05-09 13:05:55 +02:00
\newpage
2018-08-07 17:20:14 +02:00
% Inhalte
\input{MA-Inhalt.tex}
2018-05-09 13:05:55 +02:00
2018-09-03 10:53:15 +02:00
% Anhang
\input{MA-Anhang.tex}
2018-05-09 13:05:55 +02:00
% Literaturverzeichnis
\clearpage
% Schlüssel als Buchstaben
\bibliographystyle{alpha}
2018-09-03 16:02:09 +02:00
%\bibliographystyle{alphadin}
2018-09-03 10:53:15 +02:00
% Literaturverzeichnis darstellen
2018-05-09 13:05:55 +02:00
\bibliography{Literaturverweise}
2018-09-03 10:53:15 +02:00
% Literaturverzeichnis zum Inhaltsverzeichnis hinzufügen
2018-05-09 13:05:55 +02:00
\addcontentsline{toc}{chapter}{Literaturverweise}
2018-05-09 13:05:55 +02:00
\end{document}
% Nothing beyond this line!