57 lines
2.1 KiB
TeX
57 lines
2.1 KiB
TeX
|
% Preamble
|
||
|
% !IMPORTANT! Do not change the font size here, but after the \begin{document} markup
|
||
|
\documentclass[12pt,a4paper,oneside,listof=totoc,abstract=on]{scrreprt}
|
||
|
|
||
|
\include{customization/text-variables}
|
||
|
|
||
|
% Packages
|
||
|
\usepackage[ngerman]{babel} % for German language
|
||
|
\usepackage[autostyle=true,german=quotes]{csquotes}
|
||
|
\usepackage{refcheck}
|
||
|
\usepackage{float} % for placing images where I want them
|
||
|
\usepackage{fontspec} % for using own font
|
||
|
\usepackage{multicol}
|
||
|
\usepackage[includefoot,left=\pageMarginLeft,right=\pageMarginRight,top=\pageMarginTop,bottom=\pageMarginBottom,headsep=\baselineskip,footskip=\dimexpr2\baselineskip+3mm\relax]{geometry}
|
||
|
\usepackage{scrlayer-scrpage} % for header / footer
|
||
|
\usepackage{graphicx} % for including images
|
||
|
\usepackage[hidelinks,pdftitle={\paperName},pdfauthor={\author},pdfsubject={\title},pdfpagemode=UseOutlines,pdfdisplaydoctitle=true,pdflang=german]{hyperref}
|
||
|
\usepackage{setspace} % for line spacing
|
||
|
\usepackage{xcolor} % for defining colors
|
||
|
\usepackage[acronym,toc]{glossaries} % for acronyms
|
||
|
\usepackage{listings} % for listings
|
||
|
\usepackage{parskip} % for no indent in each paragraph
|
||
|
|
||
|
\usepackage[backend=biber,bibwarn=true,bibencoding=utf8,sortlocale=de_DE,style=numeric-comp]{biblatex}
|
||
|
\usepackage{amssymb}
|
||
|
\addbibresource{main.bib}
|
||
|
|
||
|
\include{customization/variables}
|
||
|
\include{customization/style}
|
||
|
\include{includes/acronyms}
|
||
|
|
||
|
% Document
|
||
|
\begin{document}
|
||
|
\setcounter{secnumdepth}{3}
|
||
|
|
||
|
\fontsize{13pt}{13pt}\selectfont
|
||
|
\pagenumbering{arabic}
|
||
|
|
||
|
\include{includes/cover}
|
||
|
|
||
|
% Inhaltsverzeichnis
|
||
|
\cleardoublepage
|
||
|
\KOMAoptions{toc=chapterentrydotfill}
|
||
|
\tableofcontents
|
||
|
|
||
|
% Kapitel
|
||
|
\cleardoublepage
|
||
|
\input{content/01-00-chapter}
|
||
|
\include{content/02-00-chapter}
|
||
|
\include{content/03-00-chapter}
|
||
|
|
||
|
% Literatur
|
||
|
\cleardoublepage
|
||
|
\printbibliography[title=Literaturverzeichnis]
|
||
|
\addcontentsline{toc}{chapter}{Literaturverzeichnis}
|
||
|
\end{document}
|