\documentclass[ paper=a4, twoside=false, parskip=half, listof=entryprefix, listof=totoc, index=totoc, bibliography=totoc, headsepline, ]{scrbook} \usepackage{silence} \WarningFilter{biblatex}{File 'ngerman-iso.lbx'} \WarningFilter{biblatex}{'\mainlang'} \WarningFilter{biblatex}{Bibliography string 'online' untranslated} \WarningFilter{hyperref}{Token not allowed in a PDF string} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Fonts Fonts Fonts %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \usepackage[utf8]{inputenc} \usepackage[ngerman]{babel} \usepackage[T1]{fontenc} \usepackage{scrhack} \usepackage{pdfpages,graphicx,subcaption,lastpage,xspace} \graphicspath{ {./images} } \usepackage{float,xcolor,csquotes,microtype,etoolbox} \MakeOuterQuote{"} \usepackage[automark,markcase=ignoreuppercase,autooneside=false]{scrlayer-scrpage} \usepackage[official]{eurosym} \usepackage[breaklinks,colorlinks,linkcolor=black,citecolor=black,filecolor=black,urlcolor=black]{hyperref} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Listings Paket %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \usepackage{listings,caption} \definecolor{codebg}{rgb}{0.95,0.95,0.95} \lstset{ basicstyle =\ttfamily\color{black}\small, keywordstyle =, commentstyle =\color{teal}, stringstyle =\itshape, tabsize=2, breaklines=true, captionpos=b, breakatwhitespace, backgroundcolor={\color{codebg}}, basewidth=0.5em, } \lstloadlanguages{ bash, } \usepackage{pmboxdraw} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Bibliography %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \setuptoc{toc}{totoc} \usepackage[ backend=biber, urldate=long, style=iso-authoryear, natbib=true, useauthor=true, mincitenames=1, maxcitenames=3 ]{biblatex} \addbibresource{./bib/online.bib} \addbibresource{./bib/book.bib} \DeclareNameAlias{default}{family-given/given-family} \renewcommand*{\finalnamedelim}{\addspace{}und\space} \AtEveryCite{ \renewcommand*{\multinamedelim}{,\space} \renewcommand*{\nameyeardelim}{\space} } \AtBeginBibliography{ \renewcommand*{\multinamedelim}{,\space} } \AfterTOCHead[lof]{\appto\autodot{:}} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Fussnoten %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \deffootnote{1.5em}{1em}{\makebox[1.5em][l]{\thefootnotemark}} \addtolength{\skip\footins}{\baselineskip} \setlength{\dimen\footins}{10\baselineskip} \interfootnotelinepenalty=10000 % Verhindert das Fortsetzen von Fussnoten %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Commands %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \newcommand{\workDatum}{\today\xspace} \newcommand{\workDateTime}{\today{} - \thistime\ Uhr} \newcommand{\workFirma}{\xspace} \newcommand{\workTitel}{} \newcommand{\workNameStudent}{\xspace} \newcommand{\workTyp}{\xspace} \newcommand{\www}[1]{\href{http://#1}{#1}} \newcommand{\wwwhttp}[1]{\href{#1}{#1}} \newcommand{\wwwlink}[1]{\footnote{\www{#1}}} \newcommand{\zB}{\mbox{z.\,B.}\xspace} \newcommand{\ua}{\mbox{u.\,a.}\xspace} \newcommand{\dah}{\mbox{d.\,h.}\xspace} \newcommand{\uAe}{\mbox{u.\,a.}\xspace} \newcommand{\refp}[1]{Seite~\pageref{#1}\xspace} \newcommand{\refk}[1]{Kapitel~\ref{#1}\xspace} \newcommand{\refa}[1]{Abbildung~\ref{#1}\xspace} \newcommand{\reft}[1]{Tabelle~\ref{#1}\xspace} \newcommand{\reflst}[1]{Listing~\ref{#1}\xspace} \newcommand{\engl}[1]{(engl: \textit{#1})\xspace} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Kopf und Fusszeilen %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \usepackage{scrtime} \pagestyle{scrheadings} \clearpairofpagestyles \ihead[]{\leftmark} \ohead[]{\rightmark} \counterwithout{footnote}{chapter} \ifoot[\workDateTime]{\workDateTime} \ofoot[\pagemark]{\pagemark} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Acronyms %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \usepackage{acro} \DeclareAcronym{html}{short=HTML,long=HyperText Markup Language} \DeclareAcronym{js}{short=JS,long=JavaScript} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Dokument %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \begin{document} \include{titlepage/titlepage} \include{vorspiel/vorspiel} \tableofcontents \newpage \listoffigures \printacronyms \addcontentsline{toc}{chapter}{Abkürzungen} \include{example/example} \printbibliography[title=Literaturverzeichnis] \end{document}