|
|
|
@@ -1,74 +1,42 @@
|
|
|
|
|
%!TEX root = ../main.tex
|
|
|
|
|
|
|
|
|
|
%% Basierend auf TeXnicCenter-Vorlage von Mark Müller
|
|
|
|
|
%% Willi Nüßer
|
|
|
|
|
%% Waldemar Penner
|
|
|
|
|
%% Ulrich Reus
|
|
|
|
|
%% Frank Plass
|
|
|
|
|
%% Oliver Tribeß
|
|
|
|
|
%% Daniel Hintze
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
|
|
% Wählen Sie die Optionen aus, indem Sie % vor der Option entfernen
|
|
|
|
|
% Dokumentation des KOMA-Script-Packets: scrguide
|
|
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
%% Optionen zum Layout des Artikels %%
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
\documentclass[%
|
|
|
|
|
paper=A4, % alle weiteren Papierformat einstellbar
|
|
|
|
|
fontsize=12pt, % Schriftgröße (12pt, 11pt (Standard))
|
|
|
|
|
%BCOR12mm, % Bindekorrektur, bspw. 1 cm
|
|
|
|
|
DIV14, % breiter Satzspiegel
|
|
|
|
|
parskip=half, % Absatzformatierung s. scrguide 3.1
|
|
|
|
|
%headsepline, % Trennline zum Seitenkopf
|
|
|
|
|
%footsepline, % Trennline zum Seitenfuß
|
|
|
|
|
%normalheadings, % Überschriften etwas kleiner (smallheadings)
|
|
|
|
|
listof=totoc, % Tabellen & Abbildungsverzeichnis ins Inhaltsverzeichnis
|
|
|
|
|
%bibtotoc, % Literaturverzeichnis im Inhalt
|
|
|
|
|
%draft % Überlangen Zeilen in Ausgabe gekennzeichnet
|
|
|
|
|
footinclude=false,% Fußzeile in die Satzspiegelberechnung einbeziehen
|
|
|
|
|
headinclude=false, % Kopfzeile in die Satzspiegelberechnung einbeziehen
|
|
|
|
|
final % draft beschleunigt die Kompilierung
|
|
|
|
|
]
|
|
|
|
|
{scrartcl}
|
|
|
|
|
|
|
|
|
|
% Reduzierung der Abstände zwischen Überschriften und Text
|
|
|
|
|
\RedeclareSectionCommand[
|
|
|
|
|
beforeskip=1\baselineskip,
|
|
|
|
|
afterskip=.0001\baselineskip]{section}
|
|
|
|
|
\RedeclareSectionCommand[
|
|
|
|
|
beforeskip=.75\baselineskip,
|
|
|
|
|
afterskip=.0001\baselineskip]{subsection}
|
|
|
|
|
\RedeclareSectionCommand[
|
|
|
|
|
beforeskip=.5\baselineskip,
|
|
|
|
|
afterskip=.0001\baselineskip]{subsubsection}
|
|
|
|
|
\documentclass[
|
|
|
|
|
paper=A4,
|
|
|
|
|
fontsize=12pt,
|
|
|
|
|
parskip=half,
|
|
|
|
|
headsepline,
|
|
|
|
|
listof=totoc,
|
|
|
|
|
draft=false,
|
|
|
|
|
headings=small,
|
|
|
|
|
oneside,
|
|
|
|
|
final
|
|
|
|
|
]{scrbook}
|
|
|
|
|
|
|
|
|
|
% Seitenränder
|
|
|
|
|
\usepackage[left=40mm, right=20mm, top=25mm, bottom=25mm]{geometry}
|
|
|
|
|
\usepackage[
|
|
|
|
|
left=40mm,
|
|
|
|
|
right=20mm,
|
|
|
|
|
top=25mm,
|
|
|
|
|
bottom=25mm
|
|
|
|
|
]{geometry}
|
|
|
|
|
|
|
|
|
|
%\setuptoc{toc}{totoc} % Inhaltsverzeichnis ins Inhaltsverzeichnis
|
|
|
|
|
% Reduzierung der Abstände zwischen Überschriften und Text
|
|
|
|
|
\RedeclareSectionCommand[afterskip=.0001\baselineskip]{section}
|
|
|
|
|
\RedeclareSectionCommand[afterskip=.0001\baselineskip]{subsection}
|
|
|
|
|
\RedeclareSectionCommand[afterskip=.0001\baselineskip]{subsubsection}
|
|
|
|
|
\RedeclareSectionCommand[beforeskip=.0001\baselineskip]{paragraph}
|
|
|
|
|
|
|
|
|
|
% Umlaute können verwendet werden
|
|
|
|
|
\usepackage[utf8]{inputenc}
|
|
|
|
|
% Schriftauswahl
|
|
|
|
|
\usepackage{fontspec}
|
|
|
|
|
|
|
|
|
|
% Neue Deutsche Rechtschreibung und Deutsche Standardtexte
|
|
|
|
|
\usepackage[ngerman]{babel}
|
|
|
|
|
|
|
|
|
|
% Echte Umlaute
|
|
|
|
|
\usepackage[T1]{fontenc}
|
|
|
|
|
|
|
|
|
|
% Latin Modern Font, Type1-Schriftart für nicht-englische Texte
|
|
|
|
|
\usepackage{lmodern}
|
|
|
|
|
|
|
|
|
|
% 1/2-zeiliger Zeilenabstand
|
|
|
|
|
\usepackage[onehalfspacing]{setspace}
|
|
|
|
|
|
|
|
|
|
% Für die Defenition eigener Kopf- und Fußzeilen
|
|
|
|
|
% \usepackage{fancyhdr}
|
|
|
|
|
|
|
|
|
|
% Für die Verwendung von Grafiken
|
|
|
|
|
\usepackage[pdftex]{graphicx}
|
|
|
|
|
\usepackage{graphicx}
|
|
|
|
|
|
|
|
|
|
% Bessere Tabellen
|
|
|
|
|
\usepackage{tabularx}
|
|
|
|
@@ -81,12 +49,18 @@ final % draft beschleunigt die Kompilierung
|
|
|
|
|
|
|
|
|
|
% Links im PDF
|
|
|
|
|
\usepackage{hyperref}
|
|
|
|
|
\hypersetup{
|
|
|
|
|
colorlinks=false,
|
|
|
|
|
pdfborder={0 0 0},
|
|
|
|
|
pdftitle=\dokumententitel,
|
|
|
|
|
pdfauthor=\dokumentenautor
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
% Verbessertes URL-Handling mit \url{http://...}
|
|
|
|
|
\usepackage{url}
|
|
|
|
|
|
|
|
|
|
% Listen ohne Abstände \begin{compactlist}...\end{compactlist}
|
|
|
|
|
\usepackage{paralist}
|
|
|
|
|
\usepackage{paralist}
|
|
|
|
|
|
|
|
|
|
% Ausgabe der aktuellen Uhrzeit für die Draft-Versionen
|
|
|
|
|
\usepackage{datetime}
|
|
|
|
@@ -98,10 +72,16 @@ final % draft beschleunigt die Kompilierung
|
|
|
|
|
\usepackage[german,capitalise]{cleveref}
|
|
|
|
|
|
|
|
|
|
% Konfiguration der Abbildungs- und Tabellenbezeichnungen
|
|
|
|
|
\usepackage[format=hang, font={footnotesize, sf}, labelfont=bf, justification=raggedright,singlelinecheck=false]{caption}
|
|
|
|
|
\usepackage[
|
|
|
|
|
format=hang,
|
|
|
|
|
font={footnotesize, sf},
|
|
|
|
|
labelfont=bf,
|
|
|
|
|
justification=raggedright,
|
|
|
|
|
singlelinecheck=false
|
|
|
|
|
]{caption}
|
|
|
|
|
|
|
|
|
|
% Verbessert die Lesbarkeit durch Mikrotypografie
|
|
|
|
|
\usepackage[activate={true,nocompatibility},final,tracking=true,kerning=true,spacing=true,factor=1100,stretch=10,shrink=10]{microtype}
|
|
|
|
|
% Macro für Quellenangaben unter Abbildungen und Tabellen
|
|
|
|
|
\newcommand{\source}[1]{\vspace{-.5\topsep}\caption*{\textsf{\textbf{Quelle:}} \textsf{#1}} }
|
|
|
|
|
|
|
|
|
|
% Abbildungen am exakten Ort platzieren
|
|
|
|
|
\usepackage{float}
|
|
|
|
@@ -109,39 +89,42 @@ final % draft beschleunigt die Kompilierung
|
|
|
|
|
% Fußnoten an Überschriften
|
|
|
|
|
\usepackage[stable]{footmisc}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
% Zitate und Quellenverzeichnis
|
|
|
|
|
\usepackage[
|
|
|
|
|
style=authoryear, % Zitierstil
|
|
|
|
|
firstinits=false, % false = Vornamen werden ausgeschrieben
|
|
|
|
|
style=authoryear,
|
|
|
|
|
giveninits=false,
|
|
|
|
|
natbib=true,
|
|
|
|
|
urldate=long, % "besucht am" - Datum
|
|
|
|
|
%url=false,
|
|
|
|
|
date=long,
|
|
|
|
|
dashed=false,
|
|
|
|
|
maxcitenames=2, % max. Anzahl Autorennamen in Zitaten
|
|
|
|
|
maxbibnames=99, % max. Anzahl Autorennamen im Quellenverzeichnis
|
|
|
|
|
%backend=bibtex % Ggf. für ältere Distributionen bibtex verwenden
|
|
|
|
|
urldate=long,
|
|
|
|
|
url=true,
|
|
|
|
|
date=long,
|
|
|
|
|
dashed=false,
|
|
|
|
|
maxcitenames=2,
|
|
|
|
|
maxbibnames=99,
|
|
|
|
|
backend=biber,
|
|
|
|
|
autocite=footnote,
|
|
|
|
|
uniquelist=false
|
|
|
|
|
]{biblatex}
|
|
|
|
|
|
|
|
|
|
% Bibliograpthy
|
|
|
|
|
\bibliography{library/library}
|
|
|
|
|
|
|
|
|
|
% Keine Einrückung bei einem neuen Absatz
|
|
|
|
|
\parindent 0pt
|
|
|
|
|
|
|
|
|
|
% Ebenentiefe der Nummerierung
|
|
|
|
|
\setcounter{secnumdepth}{3}
|
|
|
|
|
|
|
|
|
|
% Gliederungstiefe im Inhaltsverzeichnis
|
|
|
|
|
\setcounter{tocdepth}{3}
|
|
|
|
|
\setcounter{tocdepth}{3}
|
|
|
|
|
|
|
|
|
|
% Tabellen- und Abbildungsverzeichnis mit Bezeichnung:
|
|
|
|
|
% Inhaltsverzeichnis ins Inhaltsverzeichnis
|
|
|
|
|
\setuptoc{toc}{totoc}
|
|
|
|
|
|
|
|
|
|
% Tabellen- und Abbildungsverzeichnis mit Bezeichnung
|
|
|
|
|
\usepackage[titles]{tocloft}
|
|
|
|
|
|
|
|
|
|
% Abkürzungen
|
|
|
|
|
\usepackage{acronym}
|
|
|
|
|
|
|
|
|
|
% Bestimmte Warnungen unterdrücken
|
|
|
|
|
% siehe http://tex.stackexchange.com/questions/51867/koma-warning-about-toc
|
|
|
|
|
\usepackage{scrhack}
|
|
|
|
|
|
|
|
|
|
% Sourcecode-Listings
|
|
|
|
|
\usepackage{listings}
|
|
|
|
|
|
|
|
|
@@ -175,32 +158,6 @@ numbersep=5pt,
|
|
|
|
|
escapeinside=||
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
% Line-Functions %
|
|
|
|
|
|
|
|
|
|
\let\origthelstnumber\thelstnumber
|
|
|
|
|
\makeatletter
|
|
|
|
|
\newcommand*\Suppressnumber{%
|
|
|
|
|
\lst@AddToHook{OnNewLine}{%
|
|
|
|
|
\let\thelstnumber\relax%
|
|
|
|
|
\advance\c@lstnumber-\@ne\relax%
|
|
|
|
|
}%
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
\newcommand*\Reactivatenumber{%
|
|
|
|
|
\lst@AddToHook{OnNewLine}{%
|
|
|
|
|
\let\thelstnumber\origthelstnumber%
|
|
|
|
|
\advance\c@lstnumber\@ne\relax}%
|
|
|
|
|
}
|
|
|
|
|
\makeatother
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
% Bestimmte Warnungen unterdrücken
|
|
|
|
|
% siehe http://tex.stackexchange.com/questions/51867/koma-warning-about-toc
|
|
|
|
|
\usepackage{scrhack}
|
|
|
|
|
|
|
|
|
|
%% http://tex.stackexchange.com/questions/126839/how-to-add-a-colon-after-listing-label
|
|
|
|
|
\makeatletter
|
|
|
|
|
\begingroup\let\newcounter\@gobble\let\setcounter\@gobbletwo
|
|
|
|
@@ -224,61 +181,7 @@ escapeinside=||
|
|
|
|
|
\setlength{\cftlistingsindent}{1.5em}
|
|
|
|
|
|
|
|
|
|
\renewcommand\lstlistlistingname{Listingverzeichnis}
|
|
|
|
|
|
|
|
|
|
% Style für Kopf- und Fußzeilenfelder
|
|
|
|
|
% \pagestyle{fancy}
|
|
|
|
|
% \fancyhf{}
|
|
|
|
|
% \fancyhead[R]{\leftmark}
|
|
|
|
|
% \fancyfoot[R]{\thepage}
|
|
|
|
|
% \renewcommand{\sectionmark}[1]{\markboth{#1}{#1}}
|
|
|
|
|
% \fancypagestyle{plain}{}
|
|
|
|
|
|
|
|
|
|
% Macro für Quellenangaben unter Abbildungen und Tabellen
|
|
|
|
|
\newcommand{\source}[1]{\vspace{-.5\topsep}\caption*{\textsf{\textbf{Quelle:}} \textsf{#1}} }
|
|
|
|
|
|
|
|
|
|
%\makeatletter
|
|
|
|
|
%\def\l@lstlisting#1#2{\@dottedtocline{1}{0em}{1.5em}{\lstlistingname\space{#1}}{#2}}
|
|
|
|
|
%\makeatother
|
|
|
|
|
|
|
|
|
|
% Anhangsverzeichnis
|
|
|
|
|
\usepackage[nohints]{minitoc} %Anhangsverzeichnis
|
|
|
|
|
|
|
|
|
|
\makeatletter
|
|
|
|
|
\newcounter{fktnr}\setcounter{fktnr}{0}
|
|
|
|
|
\newcounter{subfktnr}[fktnr]\setcounter{subfktnr}{0}
|
|
|
|
|
|
|
|
|
|
\renewcommand\thesubfktnr{\arabic{fktnr}.\arabic{subfktnr}}
|
|
|
|
|
\newcounter{anhangcounter}
|
|
|
|
|
\newcommand{\blatt}{\stepcounter{anhangcounter}}
|
|
|
|
|
|
|
|
|
|
\newcommand{\anhang}[1]{\setcounter{anhangcounter}{0}\refstepcounter{fktnr}
|
|
|
|
|
\addcontentsline{fk}{subsection}{Anhang~\thefktnr: \hspace*{1em}#1}
|
|
|
|
|
\subsection*{{Anhang~\thefktnr \hspace*{1em} #1 \hspace*{-1em}}}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
\newcommand{\subanhang}[1]{\setcounter{anhangcounter}{0}\refstepcounter{subfktnr}
|
|
|
|
|
\addcontentsline{fk}{subsubsection}{Anhang~\thesubfktnr: \hspace*{1em}#1}
|
|
|
|
|
\subsubsection*{{Anhang~\thesubfktnr \hspace*{1em} #1 \hspace*{-1em}}}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
\newcommand{\anhangsverzeichnis}{\mtcaddsection{\subsection*{Anhangsverzeichnis \@mkboth{FKT}{FKT}}}\@starttoc{fk}\newpage}
|
|
|
|
|
|
|
|
|
|
% Abkürzungsverzeichnis
|
|
|
|
|
% \usepackage[acronym, % create list of acronyms
|
|
|
|
|
% nonumberlist,
|
|
|
|
|
% toc,
|
|
|
|
|
% section,
|
|
|
|
|
% nomain, % don't need main glossary for this example
|
|
|
|
|
% hyperfirst=false,% don't hyperlink first use
|
|
|
|
|
% sanitize=none % switch off sanitization as description
|
|
|
|
|
% ]{glossaries}
|
|
|
|
|
% \newglossarystyle{mylist}{%
|
|
|
|
|
% \glossarystyle{long}% base this style on the list style
|
|
|
|
|
% \renewcommand*{\glossaryentryfield}[5]{%
|
|
|
|
|
% \glsentryitem{##1}\textbf{##2} & ##3 \\}%
|
|
|
|
|
% }
|
|
|
|
|
|
|
|
|
|
% \input{config/Abkuerzungen}
|
|
|
|
|
% \makeglossaries\makeglossaries
|
|
|
|
|
|
|
|
|
|
\usepackage{acronym}
|
|
|
|
|
\def\l@lstlisting#1#2{\@dottedtocline{1}{0em}{1.5em}{\lstlistingname\space{#1}}{#2}}
|
|
|
|
|
\makeatother
|
|
|
|
|