diff --git a/.gitignore b/.gitignore index 249963d..477c7a9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,17 @@ *.iml -.idea/ \ No newline at end of file +.idea/ +out/ +*.synctex* +*.fls +*.aux +*.bbl +*.bcf +*.blg +*.fdb_latexmk +*.lof +*.log +*.lol +*.out +*.run.xml +*.toc +*.xdv diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..77d1546 --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,34 @@ +pipeline: + build: + image: dockershelf/latex:full + commands: + # Add fonts + - mv includes/fonts/* /usr/local/share/fonts/ + - chmod 644 /usr/local/share/fonts/* + - fc-cache + + # Sort acronyms + - sort includes/acronyms.tex -o includes/acronyms-sort.tex + + # Build pdf + - xelatex main.tex + - biber main + - xelatex main.tex + - xelatex main.tex + + # Rename main.pdf + - mv main.pdf T2000_9829423_$(date +"%Y_%m_%d_%H_%M").pdf + + gitea_release: + image: plugins/gitea-release + settings: + base_url: + from_secret: base_url + api_key: + from_secret: api_key + files: T2000_9829423_*.pdf + when: + event: + - tag + +branches: master diff --git a/customization/style.tex b/customization/style.tex index 6d48883..b5441ae 100644 --- a/customization/style.tex +++ b/customization/style.tex @@ -1,6 +1,9 @@ %! Author = soeichho %! Date = 20.11.2020 +% PDF version +\special{pdf:minorversion 7} + % Text style \setmainfont{\mainFont} \setstretch{\lineStretchValue} % Space between lines @@ -66,6 +69,20 @@ morecomment=[l]{:"}, } +\lstdefinelanguage{XML} +{ + morestring=[b]", + morecomment=[s]{}, + morecomment=[s]{}, + commentstyle=\color{darkolivegreen}, + moredelim=[s][\color{black}]{>}{<}, + stringstyle=\color{blue}, + identifierstyle=\color{brown}, + keywordstyle=\color{red}, + rulecolor=\color{black}, + morekeywords={xmlns, version, type, Algorithm, URI, Id, Target}% list your attributes here +} + \lstdefinelanguage{JavaScript}{ keywords={const, let, typeof, instanceof, new, true, false, catch, function, return, null, undefined, catch, switch, var, if, in, while, for, do, else, case, default, break}, ndkeywords={class, export, throw, import, this}, @@ -77,6 +94,15 @@ morestring=[b]" } +\lstdefinelanguage{CSS}{ + morekeywords={color,background,margin,padding,margin,padding,font,weight,display,position,top,left,right,bottom,list,style,border,size,white,space,min,width,transition}, + sensitive=false, + morecomment=[l]{//}, + morecomment=[s]{/*}{*/}, + morestring=[b]", +} + + % Float listings \newfloat{lstfloat}{htbp}{lop} \floatname{lstfloat}{Listing} diff --git a/customization/variables.tex b/customization/variables.tex index da2621b..a44e5e6 100644 --- a/customization/variables.tex +++ b/customization/variables.tex @@ -7,12 +7,12 @@ % Style variables %! IMPORTANT: The font size needs to be changed after the \begin{document} block in your main.tex -% \newcommand{\mainFont}{TeleNeo Office} % Whatever font you want to use, needs to be installed on your computer -\newcommand{\mainFont}{Ubuntu} +\newcommand{\mainFont}{TeleNeo Office} % Whatever font you want to use, needs to be installed on your computer +%\newcommand{\mainFont}{Ubuntu} \newcommand{\lineStretchValue}{1.5} \newcommand{\coverSheetImages}{ - \includegraphics[width=0.4\textwidth]{images/dhbw-stuttgart}\hspace{1 cm} - \includegraphics[width=0.4\textwidth]{images/TSY-transparent} + \includegraphics[width=0.45\textwidth]{images/dhbw-stuttgart}\hspace{1 cm} + \includegraphics[width=0.35\textwidth]{images/TSO_Logo} } % Colors diff --git a/images/TSO_Logo.png b/images/TSO_Logo.png new file mode 100644 index 0000000..a234aa9 Binary files /dev/null and b/images/TSO_Logo.png differ diff --git a/includes/acronyms-sort.tex b/includes/acronyms-sort.tex new file mode 100644 index 0000000..f054448 --- /dev/null +++ b/includes/acronyms-sort.tex @@ -0,0 +1 @@ +\acro{short version}{long version} diff --git a/includes/acronyms.tex b/includes/acronyms.tex index 5da9932..f054448 100644 --- a/includes/acronyms.tex +++ b/includes/acronyms.tex @@ -1,3 +1 @@ -\makenoidxglossaries -\newacronym{identifier}{short version}{long version} -%\newacronym[plural=plural short version]{identifier}{short version}{long version} +\acro{short version}{long version} diff --git a/includes/fonts/TeleNeoOffice-Bold.ttf b/includes/fonts/TeleNeoOffice-Bold.ttf new file mode 100644 index 0000000..0317be7 Binary files /dev/null and b/includes/fonts/TeleNeoOffice-Bold.ttf differ diff --git a/includes/fonts/TeleNeoOffice-BoldItalic.ttf b/includes/fonts/TeleNeoOffice-BoldItalic.ttf new file mode 100644 index 0000000..49447cb Binary files /dev/null and b/includes/fonts/TeleNeoOffice-BoldItalic.ttf differ diff --git a/includes/fonts/TeleNeoOffice-ExtraBold.ttf b/includes/fonts/TeleNeoOffice-ExtraBold.ttf new file mode 100644 index 0000000..68a03fb Binary files /dev/null and b/includes/fonts/TeleNeoOffice-ExtraBold.ttf differ diff --git a/includes/fonts/TeleNeoOffice-ExtraBoldItalic.ttf b/includes/fonts/TeleNeoOffice-ExtraBoldItalic.ttf new file mode 100644 index 0000000..08e37f3 Binary files /dev/null and b/includes/fonts/TeleNeoOffice-ExtraBoldItalic.ttf differ diff --git a/includes/fonts/TeleNeoOffice-Medium.ttf b/includes/fonts/TeleNeoOffice-Medium.ttf new file mode 100644 index 0000000..05728d4 Binary files /dev/null and b/includes/fonts/TeleNeoOffice-Medium.ttf differ diff --git a/includes/fonts/TeleNeoOffice-MediumItalic.ttf b/includes/fonts/TeleNeoOffice-MediumItalic.ttf new file mode 100644 index 0000000..b4dd1e3 Binary files /dev/null and b/includes/fonts/TeleNeoOffice-MediumItalic.ttf differ diff --git a/includes/fonts/TeleNeoOffice-Regular.ttf b/includes/fonts/TeleNeoOffice-Regular.ttf new file mode 100644 index 0000000..c8c0846 Binary files /dev/null and b/includes/fonts/TeleNeoOffice-Regular.ttf differ diff --git a/includes/fonts/TeleNeoOffice-RegularItalic.ttf b/includes/fonts/TeleNeoOffice-RegularItalic.ttf new file mode 100644 index 0000000..cd15677 Binary files /dev/null and b/includes/fonts/TeleNeoOffice-RegularItalic.ttf differ diff --git a/includes/fonts/TeleNeoOffice-Thin.ttf b/includes/fonts/TeleNeoOffice-Thin.ttf new file mode 100644 index 0000000..233409a Binary files /dev/null and b/includes/fonts/TeleNeoOffice-Thin.ttf differ diff --git a/includes/fonts/TeleNeoOffice-ThinItalic.ttf b/includes/fonts/TeleNeoOffice-ThinItalic.ttf new file mode 100644 index 0000000..befc59e Binary files /dev/null and b/includes/fonts/TeleNeoOffice-ThinItalic.ttf differ diff --git a/main.bib b/main.bib deleted file mode 100644 index e69de29..0000000 diff --git a/main.pdf b/main.pdf new file mode 100644 index 0000000..53cfdd7 Binary files /dev/null and b/main.pdf differ diff --git a/main.tex b/main.tex index e688675..fd1184a 100644 --- a/main.tex +++ b/main.tex @@ -1,3 +1,5 @@ +% !TeX root = main.tex + % Preamble % !IMPORTANT! Do not change the font size here, but after the \begin{document} markup \documentclass[12pt,a4paper,oneside,listof=totoc,abstract=on,parskip=half]{scrreprt} @@ -8,7 +10,6 @@ \usepackage[T1]{fontenc} \usepackage[ngerman]{babel} \usepackage[autostyle=true,german=quotes]{csquotes} -\usepackage{refcheck} \usepackage{float} \usepackage{fontspec} % for using own font \usepackage{multicol} @@ -18,43 +19,69 @@ \usepackage[hidelinks,pdftitle={\paperName},pdfauthor={\author},pdfsubject={\title},pdfpagemode=UseOutlines,pdfdisplaydoctitle=true,pdflang=german]{hyperref} \usepackage{setspace} \usepackage{xcolor} -\usepackage[acronym,toc]{glossaries} +\usepackage[printonlyused, footnote]{acronym} +\usepackage[toc]{glossaries} \usepackage{listings} \usepackage{anyfontsize} +\usepackage{pdfpages} +\usepackage{scrhack} % Remove \float@addtolists warning from listings package \usepackage[backend=biber,bibwarn=true,bibencoding=utf8,style=numeric-comp,sorting=none]{biblatex} +\usepackage{import} + +% For external link icon +\usepackage{tikz} +\newcommand{\ExternalLink}{% + \tikz[x=1.2ex, y=1.2ex, baseline=-0.05ex]{% + \begin{scope}[x=1ex, y=1ex] + \clip (-0.1,-0.1) + --++ (-0, 1.2) + --++ (0.6, 0) + --++ (0, -0.6) + --++ (0.6, 0) + --++ (0, -1); + \path[draw, + line width = 0.5, + rounded corners=0.5] + (0,0) rectangle (1,1); + \end{scope} + \path[draw, line width = 0.5] (0.5, 0.5) + -- (1, 1); + \path[draw, line width = 0.5] (0.6, 1) + -- (1, 1) -- (1, 0.6); + } +} + \addbibresource{main.bib} \include{customization/variables} \include{customization/style} -\include{includes/acronyms} % Document \begin{document} \setcounter{secnumdepth}{3} - \setcounter{tocdepth}{3} + \setcounter{tocdepth}{2} \fontsize{13pt}{13pt}\selectfont \pagenumbering{arabic} - \include{includes/cover} + \input{includes/cover} + + \pagenumbering{Roman} % Römische Seitenzahlen \cleardoublepage - \include{includes/statementofauthorship} + \input{includes/statementofauthorship} \cleardoublepage - \include{includes/abstract} + \input{includes/abstract} % Inhaltsverzeichnis \cleardoublepage - \KOMAoptions{toc=chapterentrydotfill} - \tableofcontents - - - % Abkürzungsverzeichnis - \cleardoublepage - \printnoidxglossary[type=acronym,title=Abkürzungsverzeichnis,nonumberlist] + \begin{spacing}{1.25} + \KOMAoptions{toc=chapterentrydotfill} + \tableofcontents + \end{spacing} % Abbildungsverzeichnis @@ -67,14 +94,29 @@ \renewcommand\lstlistlistingname{Quellcodeverzeichnis} \lstlistoflistings + % Abkürzungsverzeichnis + \cleardoublepage + \chapter*{Abkürzungsverzeichnis} + \addcontentsline{toc}{chapter}{Abkürzungsverzeichnis} + \begin{acronym}[AAAAAA] + \input{includes/acronyms-sort} + \end{acronym} + + \cleardoublepage + \pagenumbering{arabic} % Arabische Seitenzahlen % Kapitel \cleardoublepage \input{content/01-00-chapter} - \include{content/02-00-chapter} - \include{content/03-00-chapter} + \input{content/02-00-chapter} + \input{content/03-00-chapter} + % Literatur \cleardoublepage \printbibliography[heading=bibintoc,title=Literaturverzeichnis] + + % Anhang + \cleardoublepage + \include{content/08_anhang/anhang} \end{document} diff --git a/out/content/02-00-chapter.aux b/out/content/02-00-chapter.aux deleted file mode 100644 index e48b77f..0000000 --- a/out/content/02-00-chapter.aux +++ /dev/null @@ -1,155 +0,0 @@ -\relax -\providecommand\hyper@newdestlabel[2]{} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {chapter}{\numberline {2}Tätigkeitsschwerpunkt}{8}{chapter.2}\protected@file@percent } -\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\addvspace {10\p@ }} -\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\addvspace {10\p@ }} -\@writefile{lol}{\defcounter {refsection}{0}\relax }\@writefile{lol}{\addvspace {10\p@ }} -\@writefile{lop}{\defcounter {refsection}{0}\relax }\@writefile{lop}{\addvspace {10\p@ }} -\newlabel{ch:taetigkeitsschwerpunkt}{{2}{8}{Tätigkeitsschwerpunkt}{chapter.2}{}} -\@setckpt{content/02-00-chapter}{ -\setcounter{page}{9} -\setcounter{equation}{0} -\setcounter{enumi}{0} -\setcounter{enumii}{0} -\setcounter{enumiii}{0} -\setcounter{enumiv}{0} -\setcounter{footnote}{0} -\setcounter{mpfootnote}{0} -\setcounter{part}{0} -\setcounter{chapter}{2} -\setcounter{section}{0} -\setcounter{subsection}{0} -\setcounter{subsubsection}{0} -\setcounter{paragraph}{0} -\setcounter{subparagraph}{0} -\setcounter{figure}{0} -\setcounter{table}{0} -\setcounter{float@type}{16} -\setcounter{Item}{0} -\setcounter{Hfootnote}{0} -\setcounter{Hy@AnnotLevel}{0} -\setcounter{bookmark@seq@number}{0} -\setcounter{parentequation}{0} -\setcounter{su@anzahl}{0} -\setcounter{LT@tables}{0} -\setcounter{LT@chunks}{0} -\setcounter{lstnumber}{1} -\setcounter{tabx@nest}{0} -\setcounter{listtotal}{0} -\setcounter{listcount}{0} -\setcounter{liststart}{0} -\setcounter{liststop}{0} -\setcounter{citecount}{0} -\setcounter{citetotal}{0} -\setcounter{multicitecount}{0} -\setcounter{multicitetotal}{0} -\setcounter{instcount}{0} -\setcounter{maxnames}{3} -\setcounter{minnames}{1} -\setcounter{maxitems}{3} -\setcounter{minitems}{1} -\setcounter{citecounter}{0} -\setcounter{maxcitecounter}{0} -\setcounter{savedcitecounter}{0} -\setcounter{uniquelist}{0} -\setcounter{uniquename}{0} -\setcounter{refsection}{0} -\setcounter{refsegment}{0} -\setcounter{maxextratitle}{0} -\setcounter{maxextratitleyear}{0} -\setcounter{maxextraname}{0} -\setcounter{maxextradate}{0} -\setcounter{maxextraalpha}{0} -\setcounter{abbrvpenalty}{50} -\setcounter{highnamepenalty}{50} -\setcounter{lownamepenalty}{25} -\setcounter{maxparens}{3} -\setcounter{parenlevel}{0} -\setcounter{mincomprange}{10} -\setcounter{maxcomprange}{100000} -\setcounter{mincompwidth}{1} -\setcounter{afterword}{0} -\setcounter{savedafterword}{0} -\setcounter{annotator}{0} -\setcounter{savedannotator}{0} -\setcounter{author}{0} -\setcounter{savedauthor}{0} -\setcounter{bookauthor}{0} -\setcounter{savedbookauthor}{0} -\setcounter{commentator}{0} -\setcounter{savedcommentator}{0} -\setcounter{editor}{0} -\setcounter{savededitor}{0} -\setcounter{editora}{0} -\setcounter{savededitora}{0} -\setcounter{editorb}{0} -\setcounter{savededitorb}{0} -\setcounter{editorc}{0} -\setcounter{savededitorc}{0} -\setcounter{foreword}{0} -\setcounter{savedforeword}{0} -\setcounter{holder}{0} -\setcounter{savedholder}{0} -\setcounter{introduction}{0} -\setcounter{savedintroduction}{0} -\setcounter{namea}{0} -\setcounter{savednamea}{0} -\setcounter{nameb}{0} -\setcounter{savednameb}{0} -\setcounter{namec}{0} -\setcounter{savednamec}{0} -\setcounter{translator}{0} -\setcounter{savedtranslator}{0} -\setcounter{shortauthor}{0} -\setcounter{savedshortauthor}{0} -\setcounter{shorteditor}{0} -\setcounter{savedshorteditor}{0} -\setcounter{labelname}{0} -\setcounter{savedlabelname}{0} -\setcounter{institution}{0} -\setcounter{savedinstitution}{0} -\setcounter{lista}{0} -\setcounter{savedlista}{0} -\setcounter{listb}{0} -\setcounter{savedlistb}{0} -\setcounter{listc}{0} -\setcounter{savedlistc}{0} -\setcounter{listd}{0} -\setcounter{savedlistd}{0} -\setcounter{liste}{0} -\setcounter{savedliste}{0} -\setcounter{listf}{0} -\setcounter{savedlistf}{0} -\setcounter{location}{0} -\setcounter{savedlocation}{0} -\setcounter{organization}{0} -\setcounter{savedorganization}{0} -\setcounter{origlocation}{0} -\setcounter{savedoriglocation}{0} -\setcounter{origpublisher}{0} -\setcounter{savedorigpublisher}{0} -\setcounter{publisher}{0} -\setcounter{savedpublisher}{0} -\setcounter{language}{0} -\setcounter{savedlanguage}{0} -\setcounter{origlanguage}{0} -\setcounter{savedoriglanguage}{0} -\setcounter{pageref}{0} -\setcounter{savedpageref}{0} -\setcounter{textcitecount}{0} -\setcounter{textcitetotal}{0} -\setcounter{textcitemaxnames}{0} -\setcounter{biburlbigbreakpenalty}{100} -\setcounter{biburlbreakpenalty}{200} -\setcounter{biburlnumpenalty}{0} -\setcounter{biburlucpenalty}{0} -\setcounter{biburllcpenalty}{0} -\setcounter{smartand}{1} -\setcounter{bbx:relatedcount}{0} -\setcounter{bbx:relatedtotal}{0} -\setcounter{cbx@tempcnta}{0} -\setcounter{cbx@tempcntb}{0} -\setcounter{lstfloat}{0} -\setcounter{section@level}{0} -\setcounter{lstlisting}{0} -} diff --git a/out/content/03-00-chapter.aux b/out/content/03-00-chapter.aux deleted file mode 100644 index 6481340..0000000 --- a/out/content/03-00-chapter.aux +++ /dev/null @@ -1,155 +0,0 @@ -\relax -\providecommand\hyper@newdestlabel[2]{} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {chapter}{\numberline {3}Ausblick in die Zukunft}{9}{chapter.3}\protected@file@percent } -\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\addvspace {10\p@ }} -\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\addvspace {10\p@ }} -\@writefile{lol}{\defcounter {refsection}{0}\relax }\@writefile{lol}{\addvspace {10\p@ }} -\@writefile{lop}{\defcounter {refsection}{0}\relax }\@writefile{lop}{\addvspace {10\p@ }} -\newlabel{ch:ausblick-in-die-zukunft}{{3}{9}{Ausblick in die Zukunft}{chapter.3}{}} -\@setckpt{content/03-00-chapter}{ -\setcounter{page}{10} -\setcounter{equation}{0} -\setcounter{enumi}{0} -\setcounter{enumii}{0} -\setcounter{enumiii}{0} -\setcounter{enumiv}{0} -\setcounter{footnote}{0} -\setcounter{mpfootnote}{0} -\setcounter{part}{0} -\setcounter{chapter}{3} -\setcounter{section}{0} -\setcounter{subsection}{0} -\setcounter{subsubsection}{0} -\setcounter{paragraph}{0} -\setcounter{subparagraph}{0} -\setcounter{figure}{0} -\setcounter{table}{0} -\setcounter{float@type}{16} -\setcounter{Item}{0} -\setcounter{Hfootnote}{0} -\setcounter{Hy@AnnotLevel}{0} -\setcounter{bookmark@seq@number}{0} -\setcounter{parentequation}{0} -\setcounter{su@anzahl}{0} -\setcounter{LT@tables}{0} -\setcounter{LT@chunks}{0} -\setcounter{lstnumber}{1} -\setcounter{tabx@nest}{0} -\setcounter{listtotal}{0} -\setcounter{listcount}{0} -\setcounter{liststart}{0} -\setcounter{liststop}{0} -\setcounter{citecount}{0} -\setcounter{citetotal}{0} -\setcounter{multicitecount}{0} -\setcounter{multicitetotal}{0} -\setcounter{instcount}{0} -\setcounter{maxnames}{3} -\setcounter{minnames}{1} -\setcounter{maxitems}{3} -\setcounter{minitems}{1} -\setcounter{citecounter}{0} -\setcounter{maxcitecounter}{0} -\setcounter{savedcitecounter}{0} -\setcounter{uniquelist}{0} -\setcounter{uniquename}{0} -\setcounter{refsection}{0} -\setcounter{refsegment}{0} -\setcounter{maxextratitle}{0} -\setcounter{maxextratitleyear}{0} -\setcounter{maxextraname}{0} -\setcounter{maxextradate}{0} -\setcounter{maxextraalpha}{0} -\setcounter{abbrvpenalty}{50} -\setcounter{highnamepenalty}{50} -\setcounter{lownamepenalty}{25} -\setcounter{maxparens}{3} -\setcounter{parenlevel}{0} -\setcounter{mincomprange}{10} -\setcounter{maxcomprange}{100000} -\setcounter{mincompwidth}{1} -\setcounter{afterword}{0} -\setcounter{savedafterword}{0} -\setcounter{annotator}{0} -\setcounter{savedannotator}{0} -\setcounter{author}{0} -\setcounter{savedauthor}{0} -\setcounter{bookauthor}{0} -\setcounter{savedbookauthor}{0} -\setcounter{commentator}{0} -\setcounter{savedcommentator}{0} -\setcounter{editor}{0} -\setcounter{savededitor}{0} -\setcounter{editora}{0} -\setcounter{savededitora}{0} -\setcounter{editorb}{0} -\setcounter{savededitorb}{0} -\setcounter{editorc}{0} -\setcounter{savededitorc}{0} -\setcounter{foreword}{0} -\setcounter{savedforeword}{0} -\setcounter{holder}{0} -\setcounter{savedholder}{0} -\setcounter{introduction}{0} -\setcounter{savedintroduction}{0} -\setcounter{namea}{0} -\setcounter{savednamea}{0} -\setcounter{nameb}{0} -\setcounter{savednameb}{0} -\setcounter{namec}{0} -\setcounter{savednamec}{0} -\setcounter{translator}{0} -\setcounter{savedtranslator}{0} -\setcounter{shortauthor}{0} -\setcounter{savedshortauthor}{0} -\setcounter{shorteditor}{0} -\setcounter{savedshorteditor}{0} -\setcounter{labelname}{0} -\setcounter{savedlabelname}{0} -\setcounter{institution}{0} -\setcounter{savedinstitution}{0} -\setcounter{lista}{0} -\setcounter{savedlista}{0} -\setcounter{listb}{0} -\setcounter{savedlistb}{0} -\setcounter{listc}{0} -\setcounter{savedlistc}{0} -\setcounter{listd}{0} -\setcounter{savedlistd}{0} -\setcounter{liste}{0} -\setcounter{savedliste}{0} -\setcounter{listf}{0} -\setcounter{savedlistf}{0} -\setcounter{location}{0} -\setcounter{savedlocation}{0} -\setcounter{organization}{0} -\setcounter{savedorganization}{0} -\setcounter{origlocation}{0} -\setcounter{savedoriglocation}{0} -\setcounter{origpublisher}{0} -\setcounter{savedorigpublisher}{0} -\setcounter{publisher}{0} -\setcounter{savedpublisher}{0} -\setcounter{language}{0} -\setcounter{savedlanguage}{0} -\setcounter{origlanguage}{0} -\setcounter{savedoriglanguage}{0} -\setcounter{pageref}{0} -\setcounter{savedpageref}{0} -\setcounter{textcitecount}{0} -\setcounter{textcitetotal}{0} -\setcounter{textcitemaxnames}{0} -\setcounter{biburlbigbreakpenalty}{100} -\setcounter{biburlbreakpenalty}{200} -\setcounter{biburlnumpenalty}{0} -\setcounter{biburlucpenalty}{0} -\setcounter{biburllcpenalty}{0} -\setcounter{smartand}{1} -\setcounter{bbx:relatedcount}{0} -\setcounter{bbx:relatedtotal}{0} -\setcounter{cbx@tempcnta}{0} -\setcounter{cbx@tempcntb}{0} -\setcounter{lstfloat}{0} -\setcounter{section@level}{0} -\setcounter{lstlisting}{0} -} diff --git a/out/customization/style.aux b/out/customization/style.aux deleted file mode 100644 index 1758431..0000000 --- a/out/customization/style.aux +++ /dev/null @@ -1,147 +0,0 @@ -\relax -\providecommand\hyper@newdestlabel[2]{} -\@setckpt{customization/style}{ -\setcounter{page}{1} -\setcounter{equation}{0} -\setcounter{enumi}{0} -\setcounter{enumii}{0} -\setcounter{enumiii}{0} -\setcounter{enumiv}{0} -\setcounter{footnote}{0} -\setcounter{mpfootnote}{0} -\setcounter{part}{0} -\setcounter{chapter}{0} -\setcounter{section}{0} -\setcounter{subsection}{0} -\setcounter{subsubsection}{0} -\setcounter{paragraph}{0} -\setcounter{subparagraph}{0} -\setcounter{figure}{0} -\setcounter{table}{0} -\setcounter{float@type}{8} -\setcounter{Item}{0} -\setcounter{Hfootnote}{0} -\setcounter{Hy@AnnotLevel}{0} -\setcounter{bookmark@seq@number}{0} -\setcounter{parentequation}{0} -\setcounter{su@anzahl}{0} -\setcounter{LT@tables}{0} -\setcounter{LT@chunks}{0} -\setcounter{lstnumber}{1} -\setcounter{tabx@nest}{0} -\setcounter{listtotal}{0} -\setcounter{listcount}{0} -\setcounter{liststart}{0} -\setcounter{liststop}{0} -\setcounter{citecount}{0} -\setcounter{citetotal}{0} -\setcounter{multicitecount}{0} -\setcounter{multicitetotal}{0} -\setcounter{instcount}{0} -\setcounter{maxnames}{3} -\setcounter{minnames}{1} -\setcounter{maxitems}{3} -\setcounter{minitems}{1} -\setcounter{citecounter}{0} -\setcounter{maxcitecounter}{0} -\setcounter{savedcitecounter}{0} -\setcounter{uniquelist}{0} -\setcounter{uniquename}{0} -\setcounter{refsection}{0} -\setcounter{refsegment}{0} -\setcounter{maxextratitle}{0} -\setcounter{maxextratitleyear}{0} -\setcounter{maxextraname}{0} -\setcounter{maxextradate}{0} -\setcounter{maxextraalpha}{0} -\setcounter{abbrvpenalty}{50} -\setcounter{highnamepenalty}{50} -\setcounter{lownamepenalty}{25} -\setcounter{maxparens}{3} -\setcounter{parenlevel}{0} -\setcounter{mincomprange}{10} -\setcounter{maxcomprange}{100000} -\setcounter{mincompwidth}{1} -\setcounter{afterword}{0} -\setcounter{savedafterword}{0} -\setcounter{annotator}{0} -\setcounter{savedannotator}{0} -\setcounter{author}{0} -\setcounter{savedauthor}{0} -\setcounter{bookauthor}{0} -\setcounter{savedbookauthor}{0} -\setcounter{commentator}{0} -\setcounter{savedcommentator}{0} -\setcounter{editor}{0} -\setcounter{savededitor}{0} -\setcounter{editora}{0} -\setcounter{savededitora}{0} -\setcounter{editorb}{0} -\setcounter{savededitorb}{0} -\setcounter{editorc}{0} -\setcounter{savededitorc}{0} -\setcounter{foreword}{0} -\setcounter{savedforeword}{0} -\setcounter{holder}{0} -\setcounter{savedholder}{0} -\setcounter{introduction}{0} -\setcounter{savedintroduction}{0} -\setcounter{namea}{0} -\setcounter{savednamea}{0} -\setcounter{nameb}{0} -\setcounter{savednameb}{0} -\setcounter{namec}{0} -\setcounter{savednamec}{0} -\setcounter{translator}{0} -\setcounter{savedtranslator}{0} -\setcounter{shortauthor}{0} -\setcounter{savedshortauthor}{0} -\setcounter{shorteditor}{0} -\setcounter{savedshorteditor}{0} -\setcounter{labelname}{0} -\setcounter{savedlabelname}{0} -\setcounter{institution}{0} -\setcounter{savedinstitution}{0} -\setcounter{lista}{0} -\setcounter{savedlista}{0} -\setcounter{listb}{0} -\setcounter{savedlistb}{0} -\setcounter{listc}{0} -\setcounter{savedlistc}{0} -\setcounter{listd}{0} -\setcounter{savedlistd}{0} -\setcounter{liste}{0} -\setcounter{savedliste}{0} -\setcounter{listf}{0} -\setcounter{savedlistf}{0} -\setcounter{location}{0} -\setcounter{savedlocation}{0} -\setcounter{organization}{0} -\setcounter{savedorganization}{0} -\setcounter{origlocation}{0} -\setcounter{savedoriglocation}{0} -\setcounter{origpublisher}{0} -\setcounter{savedorigpublisher}{0} -\setcounter{publisher}{0} -\setcounter{savedpublisher}{0} -\setcounter{language}{0} -\setcounter{savedlanguage}{0} -\setcounter{origlanguage}{0} -\setcounter{savedoriglanguage}{0} -\setcounter{pageref}{0} -\setcounter{savedpageref}{0} -\setcounter{textcitecount}{0} -\setcounter{textcitetotal}{0} -\setcounter{textcitemaxnames}{0} -\setcounter{biburlbigbreakpenalty}{100} -\setcounter{biburlbreakpenalty}{200} -\setcounter{biburlnumpenalty}{0} -\setcounter{biburlucpenalty}{0} -\setcounter{biburllcpenalty}{0} -\setcounter{smartand}{1} -\setcounter{bbx:relatedcount}{0} -\setcounter{bbx:relatedtotal}{0} -\setcounter{cbx@tempcnta}{0} -\setcounter{cbx@tempcntb}{0} -\setcounter{lstfloat}{0} -} diff --git a/out/customization/text-variables.aux b/out/customization/text-variables.aux deleted file mode 100644 index 88be016..0000000 --- a/out/customization/text-variables.aux +++ /dev/null @@ -1,20 +0,0 @@ -\relax -\@setckpt{customization/text-variables}{ -\setcounter{page}{1} -\setcounter{equation}{0} -\setcounter{enumi}{0} -\setcounter{enumii}{0} -\setcounter{enumiii}{0} -\setcounter{enumiv}{0} -\setcounter{footnote}{0} -\setcounter{mpfootnote}{0} -\setcounter{part}{0} -\setcounter{chapter}{0} -\setcounter{section}{0} -\setcounter{subsection}{0} -\setcounter{subsubsection}{0} -\setcounter{paragraph}{0} -\setcounter{subparagraph}{0} -\setcounter{figure}{0} -\setcounter{table}{0} -} diff --git a/out/customization/variables.aux b/out/customization/variables.aux deleted file mode 100644 index 72064a8..0000000 --- a/out/customization/variables.aux +++ /dev/null @@ -1,146 +0,0 @@ -\relax -\providecommand\hyper@newdestlabel[2]{} -\@setckpt{customization/variables}{ -\setcounter{page}{1} -\setcounter{equation}{0} -\setcounter{enumi}{0} -\setcounter{enumii}{0} -\setcounter{enumiii}{0} -\setcounter{enumiv}{0} -\setcounter{footnote}{0} -\setcounter{mpfootnote}{0} -\setcounter{part}{0} -\setcounter{chapter}{0} -\setcounter{section}{0} -\setcounter{subsection}{0} -\setcounter{subsubsection}{0} -\setcounter{paragraph}{0} -\setcounter{subparagraph}{0} -\setcounter{figure}{0} -\setcounter{table}{0} -\setcounter{float@type}{4} -\setcounter{Item}{0} -\setcounter{Hfootnote}{0} -\setcounter{Hy@AnnotLevel}{0} -\setcounter{bookmark@seq@number}{0} -\setcounter{parentequation}{0} -\setcounter{su@anzahl}{0} -\setcounter{LT@tables}{0} -\setcounter{LT@chunks}{0} -\setcounter{lstnumber}{1} -\setcounter{tabx@nest}{0} -\setcounter{listtotal}{0} -\setcounter{listcount}{0} -\setcounter{liststart}{0} -\setcounter{liststop}{0} -\setcounter{citecount}{0} -\setcounter{citetotal}{0} -\setcounter{multicitecount}{0} -\setcounter{multicitetotal}{0} -\setcounter{instcount}{0} -\setcounter{maxnames}{3} -\setcounter{minnames}{1} -\setcounter{maxitems}{3} -\setcounter{minitems}{1} -\setcounter{citecounter}{0} -\setcounter{maxcitecounter}{0} -\setcounter{savedcitecounter}{0} -\setcounter{uniquelist}{0} -\setcounter{uniquename}{0} -\setcounter{refsection}{0} -\setcounter{refsegment}{0} -\setcounter{maxextratitle}{0} -\setcounter{maxextratitleyear}{0} -\setcounter{maxextraname}{0} -\setcounter{maxextradate}{0} -\setcounter{maxextraalpha}{0} -\setcounter{abbrvpenalty}{50} -\setcounter{highnamepenalty}{50} -\setcounter{lownamepenalty}{25} -\setcounter{maxparens}{3} -\setcounter{parenlevel}{0} -\setcounter{mincomprange}{10} -\setcounter{maxcomprange}{100000} -\setcounter{mincompwidth}{1} -\setcounter{afterword}{0} -\setcounter{savedafterword}{0} -\setcounter{annotator}{0} -\setcounter{savedannotator}{0} -\setcounter{author}{0} -\setcounter{savedauthor}{0} -\setcounter{bookauthor}{0} -\setcounter{savedbookauthor}{0} -\setcounter{commentator}{0} -\setcounter{savedcommentator}{0} -\setcounter{editor}{0} -\setcounter{savededitor}{0} -\setcounter{editora}{0} -\setcounter{savededitora}{0} -\setcounter{editorb}{0} -\setcounter{savededitorb}{0} -\setcounter{editorc}{0} -\setcounter{savededitorc}{0} -\setcounter{foreword}{0} -\setcounter{savedforeword}{0} -\setcounter{holder}{0} -\setcounter{savedholder}{0} -\setcounter{introduction}{0} -\setcounter{savedintroduction}{0} -\setcounter{namea}{0} -\setcounter{savednamea}{0} -\setcounter{nameb}{0} -\setcounter{savednameb}{0} -\setcounter{namec}{0} -\setcounter{savednamec}{0} -\setcounter{translator}{0} -\setcounter{savedtranslator}{0} -\setcounter{shortauthor}{0} -\setcounter{savedshortauthor}{0} -\setcounter{shorteditor}{0} -\setcounter{savedshorteditor}{0} -\setcounter{labelname}{0} -\setcounter{savedlabelname}{0} -\setcounter{institution}{0} -\setcounter{savedinstitution}{0} -\setcounter{lista}{0} -\setcounter{savedlista}{0} -\setcounter{listb}{0} -\setcounter{savedlistb}{0} -\setcounter{listc}{0} -\setcounter{savedlistc}{0} -\setcounter{listd}{0} -\setcounter{savedlistd}{0} -\setcounter{liste}{0} -\setcounter{savedliste}{0} -\setcounter{listf}{0} -\setcounter{savedlistf}{0} -\setcounter{location}{0} -\setcounter{savedlocation}{0} -\setcounter{organization}{0} -\setcounter{savedorganization}{0} -\setcounter{origlocation}{0} -\setcounter{savedoriglocation}{0} -\setcounter{origpublisher}{0} -\setcounter{savedorigpublisher}{0} -\setcounter{publisher}{0} -\setcounter{savedpublisher}{0} -\setcounter{language}{0} -\setcounter{savedlanguage}{0} -\setcounter{origlanguage}{0} -\setcounter{savedoriglanguage}{0} -\setcounter{pageref}{0} -\setcounter{savedpageref}{0} -\setcounter{textcitecount}{0} -\setcounter{textcitetotal}{0} -\setcounter{textcitemaxnames}{0} -\setcounter{biburlbigbreakpenalty}{100} -\setcounter{biburlbreakpenalty}{200} -\setcounter{biburlnumpenalty}{0} -\setcounter{biburlucpenalty}{0} -\setcounter{biburllcpenalty}{0} -\setcounter{smartand}{1} -\setcounter{bbx:relatedcount}{0} -\setcounter{bbx:relatedtotal}{0} -\setcounter{cbx@tempcnta}{0} -\setcounter{cbx@tempcntb}{0} -} diff --git a/out/includes/abstract.aux b/out/includes/abstract.aux deleted file mode 100644 index 16c81dc..0000000 --- a/out/includes/abstract.aux +++ /dev/null @@ -1,149 +0,0 @@ -\relax -\providecommand\hyper@newdestlabel[2]{} -\@setckpt{includes/abstract}{ -\setcounter{page}{4} -\setcounter{equation}{0} -\setcounter{enumi}{0} -\setcounter{enumii}{0} -\setcounter{enumiii}{0} -\setcounter{enumiv}{0} -\setcounter{footnote}{0} -\setcounter{mpfootnote}{0} -\setcounter{part}{0} -\setcounter{chapter}{0} -\setcounter{section}{0} -\setcounter{subsection}{0} -\setcounter{subsubsection}{0} -\setcounter{paragraph}{0} -\setcounter{subparagraph}{0} -\setcounter{figure}{0} -\setcounter{table}{0} -\setcounter{float@type}{16} -\setcounter{Item}{0} -\setcounter{Hfootnote}{0} -\setcounter{Hy@AnnotLevel}{0} -\setcounter{bookmark@seq@number}{0} -\setcounter{parentequation}{0} -\setcounter{su@anzahl}{0} -\setcounter{LT@tables}{0} -\setcounter{LT@chunks}{0} -\setcounter{lstnumber}{1} -\setcounter{tabx@nest}{0} -\setcounter{listtotal}{0} -\setcounter{listcount}{0} -\setcounter{liststart}{0} -\setcounter{liststop}{0} -\setcounter{citecount}{0} -\setcounter{citetotal}{0} -\setcounter{multicitecount}{0} -\setcounter{multicitetotal}{0} -\setcounter{instcount}{0} -\setcounter{maxnames}{3} -\setcounter{minnames}{1} -\setcounter{maxitems}{3} -\setcounter{minitems}{1} -\setcounter{citecounter}{0} -\setcounter{maxcitecounter}{0} -\setcounter{savedcitecounter}{0} -\setcounter{uniquelist}{0} -\setcounter{uniquename}{0} -\setcounter{refsection}{0} -\setcounter{refsegment}{0} -\setcounter{maxextratitle}{0} -\setcounter{maxextratitleyear}{0} -\setcounter{maxextraname}{0} -\setcounter{maxextradate}{0} -\setcounter{maxextraalpha}{0} -\setcounter{abbrvpenalty}{50} -\setcounter{highnamepenalty}{50} -\setcounter{lownamepenalty}{25} -\setcounter{maxparens}{3} -\setcounter{parenlevel}{0} -\setcounter{mincomprange}{10} -\setcounter{maxcomprange}{100000} -\setcounter{mincompwidth}{1} -\setcounter{afterword}{0} -\setcounter{savedafterword}{0} -\setcounter{annotator}{0} -\setcounter{savedannotator}{0} -\setcounter{author}{0} -\setcounter{savedauthor}{0} -\setcounter{bookauthor}{0} -\setcounter{savedbookauthor}{0} -\setcounter{commentator}{0} -\setcounter{savedcommentator}{0} -\setcounter{editor}{0} -\setcounter{savededitor}{0} -\setcounter{editora}{0} -\setcounter{savededitora}{0} -\setcounter{editorb}{0} -\setcounter{savededitorb}{0} -\setcounter{editorc}{0} -\setcounter{savededitorc}{0} -\setcounter{foreword}{0} -\setcounter{savedforeword}{0} -\setcounter{holder}{0} -\setcounter{savedholder}{0} -\setcounter{introduction}{0} -\setcounter{savedintroduction}{0} -\setcounter{namea}{0} -\setcounter{savednamea}{0} -\setcounter{nameb}{0} -\setcounter{savednameb}{0} -\setcounter{namec}{0} -\setcounter{savednamec}{0} -\setcounter{translator}{0} -\setcounter{savedtranslator}{0} -\setcounter{shortauthor}{0} -\setcounter{savedshortauthor}{0} -\setcounter{shorteditor}{0} -\setcounter{savedshorteditor}{0} -\setcounter{labelname}{0} -\setcounter{savedlabelname}{0} -\setcounter{institution}{0} -\setcounter{savedinstitution}{0} -\setcounter{lista}{0} -\setcounter{savedlista}{0} -\setcounter{listb}{0} -\setcounter{savedlistb}{0} -\setcounter{listc}{0} -\setcounter{savedlistc}{0} -\setcounter{listd}{0} -\setcounter{savedlistd}{0} -\setcounter{liste}{0} -\setcounter{savedliste}{0} -\setcounter{listf}{0} -\setcounter{savedlistf}{0} -\setcounter{location}{0} -\setcounter{savedlocation}{0} -\setcounter{organization}{0} -\setcounter{savedorganization}{0} -\setcounter{origlocation}{0} -\setcounter{savedoriglocation}{0} -\setcounter{origpublisher}{0} -\setcounter{savedorigpublisher}{0} -\setcounter{publisher}{0} -\setcounter{savedpublisher}{0} -\setcounter{language}{0} -\setcounter{savedlanguage}{0} -\setcounter{origlanguage}{0} -\setcounter{savedoriglanguage}{0} -\setcounter{pageref}{0} -\setcounter{savedpageref}{0} -\setcounter{textcitecount}{0} -\setcounter{textcitetotal}{0} -\setcounter{textcitemaxnames}{0} -\setcounter{biburlbigbreakpenalty}{100} -\setcounter{biburlbreakpenalty}{200} -\setcounter{biburlnumpenalty}{0} -\setcounter{biburlucpenalty}{0} -\setcounter{biburllcpenalty}{0} -\setcounter{smartand}{1} -\setcounter{bbx:relatedcount}{0} -\setcounter{bbx:relatedtotal}{0} -\setcounter{cbx@tempcnta}{0} -\setcounter{cbx@tempcntb}{0} -\setcounter{lstfloat}{0} -\setcounter{section@level}{0} -\setcounter{lstlisting}{0} -} diff --git a/out/includes/acronyms.aux b/out/includes/acronyms.aux deleted file mode 100644 index 484d881..0000000 --- a/out/includes/acronyms.aux +++ /dev/null @@ -1,147 +0,0 @@ -\relax -\providecommand\hyper@newdestlabel[2]{} -\@setckpt{includes/acronyms}{ -\setcounter{page}{1} -\setcounter{equation}{0} -\setcounter{enumi}{0} -\setcounter{enumii}{0} -\setcounter{enumiii}{0} -\setcounter{enumiv}{0} -\setcounter{footnote}{0} -\setcounter{mpfootnote}{0} -\setcounter{part}{0} -\setcounter{chapter}{0} -\setcounter{section}{0} -\setcounter{subsection}{0} -\setcounter{subsubsection}{0} -\setcounter{paragraph}{0} -\setcounter{subparagraph}{0} -\setcounter{figure}{0} -\setcounter{table}{0} -\setcounter{float@type}{8} -\setcounter{Item}{0} -\setcounter{Hfootnote}{0} -\setcounter{Hy@AnnotLevel}{0} -\setcounter{bookmark@seq@number}{0} -\setcounter{parentequation}{0} -\setcounter{su@anzahl}{0} -\setcounter{LT@tables}{0} -\setcounter{LT@chunks}{0} -\setcounter{lstnumber}{1} -\setcounter{tabx@nest}{0} -\setcounter{listtotal}{0} -\setcounter{listcount}{0} -\setcounter{liststart}{0} -\setcounter{liststop}{0} -\setcounter{citecount}{0} -\setcounter{citetotal}{0} -\setcounter{multicitecount}{0} -\setcounter{multicitetotal}{0} -\setcounter{instcount}{0} -\setcounter{maxnames}{3} -\setcounter{minnames}{1} -\setcounter{maxitems}{3} -\setcounter{minitems}{1} -\setcounter{citecounter}{0} -\setcounter{maxcitecounter}{0} -\setcounter{savedcitecounter}{0} -\setcounter{uniquelist}{0} -\setcounter{uniquename}{0} -\setcounter{refsection}{0} -\setcounter{refsegment}{0} -\setcounter{maxextratitle}{0} -\setcounter{maxextratitleyear}{0} -\setcounter{maxextraname}{0} -\setcounter{maxextradate}{0} -\setcounter{maxextraalpha}{0} -\setcounter{abbrvpenalty}{50} -\setcounter{highnamepenalty}{50} -\setcounter{lownamepenalty}{25} -\setcounter{maxparens}{3} -\setcounter{parenlevel}{0} -\setcounter{mincomprange}{10} -\setcounter{maxcomprange}{100000} -\setcounter{mincompwidth}{1} -\setcounter{afterword}{0} -\setcounter{savedafterword}{0} -\setcounter{annotator}{0} -\setcounter{savedannotator}{0} -\setcounter{author}{0} -\setcounter{savedauthor}{0} -\setcounter{bookauthor}{0} -\setcounter{savedbookauthor}{0} -\setcounter{commentator}{0} -\setcounter{savedcommentator}{0} -\setcounter{editor}{0} -\setcounter{savededitor}{0} -\setcounter{editora}{0} -\setcounter{savededitora}{0} -\setcounter{editorb}{0} -\setcounter{savededitorb}{0} -\setcounter{editorc}{0} -\setcounter{savededitorc}{0} -\setcounter{foreword}{0} -\setcounter{savedforeword}{0} -\setcounter{holder}{0} -\setcounter{savedholder}{0} -\setcounter{introduction}{0} -\setcounter{savedintroduction}{0} -\setcounter{namea}{0} -\setcounter{savednamea}{0} -\setcounter{nameb}{0} -\setcounter{savednameb}{0} -\setcounter{namec}{0} -\setcounter{savednamec}{0} -\setcounter{translator}{0} -\setcounter{savedtranslator}{0} -\setcounter{shortauthor}{0} -\setcounter{savedshortauthor}{0} -\setcounter{shorteditor}{0} -\setcounter{savedshorteditor}{0} -\setcounter{labelname}{0} -\setcounter{savedlabelname}{0} -\setcounter{institution}{0} -\setcounter{savedinstitution}{0} -\setcounter{lista}{0} -\setcounter{savedlista}{0} -\setcounter{listb}{0} -\setcounter{savedlistb}{0} -\setcounter{listc}{0} -\setcounter{savedlistc}{0} -\setcounter{listd}{0} -\setcounter{savedlistd}{0} -\setcounter{liste}{0} -\setcounter{savedliste}{0} -\setcounter{listf}{0} -\setcounter{savedlistf}{0} -\setcounter{location}{0} -\setcounter{savedlocation}{0} -\setcounter{organization}{0} -\setcounter{savedorganization}{0} -\setcounter{origlocation}{0} -\setcounter{savedoriglocation}{0} -\setcounter{origpublisher}{0} -\setcounter{savedorigpublisher}{0} -\setcounter{publisher}{0} -\setcounter{savedpublisher}{0} -\setcounter{language}{0} -\setcounter{savedlanguage}{0} -\setcounter{origlanguage}{0} -\setcounter{savedoriglanguage}{0} -\setcounter{pageref}{0} -\setcounter{savedpageref}{0} -\setcounter{textcitecount}{0} -\setcounter{textcitetotal}{0} -\setcounter{textcitemaxnames}{0} -\setcounter{biburlbigbreakpenalty}{100} -\setcounter{biburlbreakpenalty}{200} -\setcounter{biburlnumpenalty}{0} -\setcounter{biburlucpenalty}{0} -\setcounter{biburllcpenalty}{0} -\setcounter{smartand}{1} -\setcounter{bbx:relatedcount}{0} -\setcounter{bbx:relatedtotal}{0} -\setcounter{cbx@tempcnta}{0} -\setcounter{cbx@tempcntb}{0} -\setcounter{lstfloat}{0} -} diff --git a/out/includes/cover.aux b/out/includes/cover.aux deleted file mode 100644 index 2ea8c8d..0000000 --- a/out/includes/cover.aux +++ /dev/null @@ -1,149 +0,0 @@ -\relax -\providecommand\hyper@newdestlabel[2]{} -\@setckpt{includes/cover}{ -\setcounter{page}{2} -\setcounter{equation}{0} -\setcounter{enumi}{0} -\setcounter{enumii}{0} -\setcounter{enumiii}{0} -\setcounter{enumiv}{0} -\setcounter{footnote}{0} -\setcounter{mpfootnote}{0} -\setcounter{part}{0} -\setcounter{chapter}{0} -\setcounter{section}{0} -\setcounter{subsection}{0} -\setcounter{subsubsection}{0} -\setcounter{paragraph}{0} -\setcounter{subparagraph}{0} -\setcounter{figure}{0} -\setcounter{table}{0} -\setcounter{float@type}{16} -\setcounter{Item}{0} -\setcounter{Hfootnote}{0} -\setcounter{Hy@AnnotLevel}{0} -\setcounter{bookmark@seq@number}{0} -\setcounter{parentequation}{0} -\setcounter{su@anzahl}{0} -\setcounter{LT@tables}{0} -\setcounter{LT@chunks}{0} -\setcounter{lstnumber}{1} -\setcounter{tabx@nest}{0} -\setcounter{listtotal}{0} -\setcounter{listcount}{0} -\setcounter{liststart}{0} -\setcounter{liststop}{0} -\setcounter{citecount}{0} -\setcounter{citetotal}{0} -\setcounter{multicitecount}{0} -\setcounter{multicitetotal}{0} -\setcounter{instcount}{0} -\setcounter{maxnames}{3} -\setcounter{minnames}{1} -\setcounter{maxitems}{3} -\setcounter{minitems}{1} -\setcounter{citecounter}{0} -\setcounter{maxcitecounter}{0} -\setcounter{savedcitecounter}{0} -\setcounter{uniquelist}{0} -\setcounter{uniquename}{0} -\setcounter{refsection}{0} -\setcounter{refsegment}{0} -\setcounter{maxextratitle}{0} -\setcounter{maxextratitleyear}{0} -\setcounter{maxextraname}{0} -\setcounter{maxextradate}{0} -\setcounter{maxextraalpha}{0} -\setcounter{abbrvpenalty}{50} -\setcounter{highnamepenalty}{50} -\setcounter{lownamepenalty}{25} -\setcounter{maxparens}{3} -\setcounter{parenlevel}{0} -\setcounter{mincomprange}{10} -\setcounter{maxcomprange}{100000} -\setcounter{mincompwidth}{1} -\setcounter{afterword}{0} -\setcounter{savedafterword}{0} -\setcounter{annotator}{0} -\setcounter{savedannotator}{0} -\setcounter{author}{0} -\setcounter{savedauthor}{0} -\setcounter{bookauthor}{0} -\setcounter{savedbookauthor}{0} -\setcounter{commentator}{0} -\setcounter{savedcommentator}{0} -\setcounter{editor}{0} -\setcounter{savededitor}{0} -\setcounter{editora}{0} -\setcounter{savededitora}{0} -\setcounter{editorb}{0} -\setcounter{savededitorb}{0} -\setcounter{editorc}{0} -\setcounter{savededitorc}{0} -\setcounter{foreword}{0} -\setcounter{savedforeword}{0} -\setcounter{holder}{0} -\setcounter{savedholder}{0} -\setcounter{introduction}{0} -\setcounter{savedintroduction}{0} -\setcounter{namea}{0} -\setcounter{savednamea}{0} -\setcounter{nameb}{0} -\setcounter{savednameb}{0} -\setcounter{namec}{0} -\setcounter{savednamec}{0} -\setcounter{translator}{0} -\setcounter{savedtranslator}{0} -\setcounter{shortauthor}{0} -\setcounter{savedshortauthor}{0} -\setcounter{shorteditor}{0} -\setcounter{savedshorteditor}{0} -\setcounter{labelname}{0} -\setcounter{savedlabelname}{0} -\setcounter{institution}{0} -\setcounter{savedinstitution}{0} -\setcounter{lista}{0} -\setcounter{savedlista}{0} -\setcounter{listb}{0} -\setcounter{savedlistb}{0} -\setcounter{listc}{0} -\setcounter{savedlistc}{0} -\setcounter{listd}{0} -\setcounter{savedlistd}{0} -\setcounter{liste}{0} -\setcounter{savedliste}{0} -\setcounter{listf}{0} -\setcounter{savedlistf}{0} -\setcounter{location}{0} -\setcounter{savedlocation}{0} -\setcounter{organization}{0} -\setcounter{savedorganization}{0} -\setcounter{origlocation}{0} -\setcounter{savedoriglocation}{0} -\setcounter{origpublisher}{0} -\setcounter{savedorigpublisher}{0} -\setcounter{publisher}{0} -\setcounter{savedpublisher}{0} -\setcounter{language}{0} -\setcounter{savedlanguage}{0} -\setcounter{origlanguage}{0} -\setcounter{savedoriglanguage}{0} -\setcounter{pageref}{0} -\setcounter{savedpageref}{0} -\setcounter{textcitecount}{0} -\setcounter{textcitetotal}{0} -\setcounter{textcitemaxnames}{0} -\setcounter{biburlbigbreakpenalty}{100} -\setcounter{biburlbreakpenalty}{200} -\setcounter{biburlnumpenalty}{0} -\setcounter{biburlucpenalty}{0} -\setcounter{biburllcpenalty}{0} -\setcounter{smartand}{1} -\setcounter{bbx:relatedcount}{0} -\setcounter{bbx:relatedtotal}{0} -\setcounter{cbx@tempcnta}{0} -\setcounter{cbx@tempcntb}{0} -\setcounter{lstfloat}{0} -\setcounter{section@level}{0} -\setcounter{lstlisting}{0} -} diff --git a/out/includes/statementofauthorship.aux b/out/includes/statementofauthorship.aux deleted file mode 100644 index 1bd6315..0000000 --- a/out/includes/statementofauthorship.aux +++ /dev/null @@ -1,149 +0,0 @@ -\relax -\providecommand\hyper@newdestlabel[2]{} -\@setckpt{includes/statementofauthorship}{ -\setcounter{page}{3} -\setcounter{equation}{0} -\setcounter{enumi}{0} -\setcounter{enumii}{0} -\setcounter{enumiii}{0} -\setcounter{enumiv}{0} -\setcounter{footnote}{0} -\setcounter{mpfootnote}{0} -\setcounter{part}{0} -\setcounter{chapter}{0} -\setcounter{section}{0} -\setcounter{subsection}{0} -\setcounter{subsubsection}{0} -\setcounter{paragraph}{0} -\setcounter{subparagraph}{0} -\setcounter{figure}{0} -\setcounter{table}{0} -\setcounter{float@type}{16} -\setcounter{Item}{0} -\setcounter{Hfootnote}{0} -\setcounter{Hy@AnnotLevel}{0} -\setcounter{bookmark@seq@number}{0} -\setcounter{parentequation}{0} -\setcounter{su@anzahl}{0} -\setcounter{LT@tables}{0} -\setcounter{LT@chunks}{0} -\setcounter{lstnumber}{1} -\setcounter{tabx@nest}{0} -\setcounter{listtotal}{0} -\setcounter{listcount}{0} -\setcounter{liststart}{0} -\setcounter{liststop}{0} -\setcounter{citecount}{0} -\setcounter{citetotal}{0} -\setcounter{multicitecount}{0} -\setcounter{multicitetotal}{0} -\setcounter{instcount}{0} -\setcounter{maxnames}{3} -\setcounter{minnames}{1} -\setcounter{maxitems}{3} -\setcounter{minitems}{1} -\setcounter{citecounter}{0} -\setcounter{maxcitecounter}{0} -\setcounter{savedcitecounter}{0} -\setcounter{uniquelist}{0} -\setcounter{uniquename}{0} -\setcounter{refsection}{0} -\setcounter{refsegment}{0} -\setcounter{maxextratitle}{0} -\setcounter{maxextratitleyear}{0} -\setcounter{maxextraname}{0} -\setcounter{maxextradate}{0} -\setcounter{maxextraalpha}{0} -\setcounter{abbrvpenalty}{50} -\setcounter{highnamepenalty}{50} -\setcounter{lownamepenalty}{25} -\setcounter{maxparens}{3} -\setcounter{parenlevel}{0} -\setcounter{mincomprange}{10} -\setcounter{maxcomprange}{100000} -\setcounter{mincompwidth}{1} -\setcounter{afterword}{0} -\setcounter{savedafterword}{0} -\setcounter{annotator}{0} -\setcounter{savedannotator}{0} -\setcounter{author}{0} -\setcounter{savedauthor}{0} -\setcounter{bookauthor}{0} -\setcounter{savedbookauthor}{0} -\setcounter{commentator}{0} -\setcounter{savedcommentator}{0} -\setcounter{editor}{0} -\setcounter{savededitor}{0} -\setcounter{editora}{0} -\setcounter{savededitora}{0} -\setcounter{editorb}{0} -\setcounter{savededitorb}{0} -\setcounter{editorc}{0} -\setcounter{savededitorc}{0} -\setcounter{foreword}{0} -\setcounter{savedforeword}{0} -\setcounter{holder}{0} -\setcounter{savedholder}{0} -\setcounter{introduction}{0} -\setcounter{savedintroduction}{0} -\setcounter{namea}{0} -\setcounter{savednamea}{0} -\setcounter{nameb}{0} -\setcounter{savednameb}{0} -\setcounter{namec}{0} -\setcounter{savednamec}{0} -\setcounter{translator}{0} -\setcounter{savedtranslator}{0} -\setcounter{shortauthor}{0} -\setcounter{savedshortauthor}{0} -\setcounter{shorteditor}{0} -\setcounter{savedshorteditor}{0} -\setcounter{labelname}{0} -\setcounter{savedlabelname}{0} -\setcounter{institution}{0} -\setcounter{savedinstitution}{0} -\setcounter{lista}{0} -\setcounter{savedlista}{0} -\setcounter{listb}{0} -\setcounter{savedlistb}{0} -\setcounter{listc}{0} -\setcounter{savedlistc}{0} -\setcounter{listd}{0} -\setcounter{savedlistd}{0} -\setcounter{liste}{0} -\setcounter{savedliste}{0} -\setcounter{listf}{0} -\setcounter{savedlistf}{0} -\setcounter{location}{0} -\setcounter{savedlocation}{0} -\setcounter{organization}{0} -\setcounter{savedorganization}{0} -\setcounter{origlocation}{0} -\setcounter{savedoriglocation}{0} -\setcounter{origpublisher}{0} -\setcounter{savedorigpublisher}{0} -\setcounter{publisher}{0} -\setcounter{savedpublisher}{0} -\setcounter{language}{0} -\setcounter{savedlanguage}{0} -\setcounter{origlanguage}{0} -\setcounter{savedoriglanguage}{0} -\setcounter{pageref}{0} -\setcounter{savedpageref}{0} -\setcounter{textcitecount}{0} -\setcounter{textcitetotal}{0} -\setcounter{textcitemaxnames}{0} -\setcounter{biburlbigbreakpenalty}{100} -\setcounter{biburlbreakpenalty}{200} -\setcounter{biburlnumpenalty}{0} -\setcounter{biburlucpenalty}{0} -\setcounter{biburllcpenalty}{0} -\setcounter{smartand}{1} -\setcounter{bbx:relatedcount}{0} -\setcounter{bbx:relatedtotal}{0} -\setcounter{cbx@tempcnta}{0} -\setcounter{cbx@tempcntb}{0} -\setcounter{lstfloat}{0} -\setcounter{section@level}{0} -\setcounter{lstlisting}{0} -} diff --git a/out/main.aux b/out/main.aux deleted file mode 100644 index 2c2aecd..0000000 --- a/out/main.aux +++ /dev/null @@ -1,49 +0,0 @@ -\relax -\providecommand\hyper@newdestlabel[2]{} -\providecommand*\new@tpo@label[2]{} -\@nameuse{bbl@beforestart} -\catcode `"\active -\providecommand{\usedref}[1]{\relax} -\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} -\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined -\global\let\oldcontentsline\contentsline -\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}} -\global\let\oldnewlabel\newlabel -\gdef\newlabel#1#2{\newlabelxx{#1}#2} -\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} -\AtEndDocument{\ifx\hyper@anchor\@undefined -\let\contentsline\oldcontentsline -\let\newlabel\oldnewlabel -\fi} -\fi} -\global\let\hyper@last\relax -\gdef\HyperFirstAtBeginDocument#1{#1} -\providecommand*\HyPL@Entry[1]{} -\abx@aux@refcontext{none/global//global/global} -\@input{includes/cover.aux} -\HyPL@Entry{0<>} -\providecommand\@newglossary[4]{} -\@newglossary{main}{glg}{gls}{glo} -\@newglossary{acronym}{alg}{acr}{acn} -\@writefile{toc}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax } -\@writefile{lof}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax } -\@writefile{lot}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax } -\babel@aux{ngerman}{} -\providecommand\@gls@reference[3]{} -\@input{includes/statementofauthorship.aux} -\@input{includes/abstract.aux} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {chapter}{\nonumberline Abbildungsverzeichnis}{5}{chapter*.3}\protected@file@percent } -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {chapter}{\nonumberline Quellcodeverzeichnis}{6}{chapter*.4}\protected@file@percent } -\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\addvspace {10\p@ }} -\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\addvspace {10\p@ }} -\@writefile{lol}{\defcounter {refsection}{0}\relax }\@writefile{lol}{\addvspace {10\p@ }} -\@writefile{lop}{\defcounter {refsection}{0}\relax }\@writefile{lop}{\addvspace {10\p@ }} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {chapter}{\numberline {1}Einleitung}{7}{chapter.1}\protected@file@percent } -\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\addvspace {10\p@ }} -\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\addvspace {10\p@ }} -\@writefile{lol}{\defcounter {refsection}{0}\relax }\@writefile{lol}{\addvspace {10\p@ }} -\@writefile{lop}{\defcounter {refsection}{0}\relax }\@writefile{lop}{\addvspace {10\p@ }} -\newlabel{ch:einleitung}{{1}{7}{Einleitung}{chapter.1}{}} -\@input{content/02-00-chapter.aux} -\@input{content/03-00-chapter.aux} -\global\@namedef{scr@dte@chapter@lastmaxnumwidth}{12.34991pt} diff --git a/out/main.bbl b/out/main.bbl deleted file mode 100644 index 055c523..0000000 --- a/out/main.bbl +++ /dev/null @@ -1,20 +0,0 @@ -% $ biblatex auxiliary file $ -% $ biblatex bbl format version 3.1 $ -% Do not modify the above lines! -% -% This is an auxiliary file used by the 'biblatex' package. -% This file may safely be deleted. It will be recreated by -% biber as required. -% -\begingroup -\makeatletter -\@ifundefined{ver@biblatex.sty} - {\@latex@error - {Missing 'biblatex' package} - {The bibliography requires the 'biblatex' package.} - \aftergroup\endinput} - {} -\endgroup - -\endinput - diff --git a/out/main.bcf b/out/main.bcf deleted file mode 100644 index c082abb..0000000 --- a/out/main.bcf +++ /dev/null @@ -1,2202 +0,0 @@ - - - - - - output_encoding - utf8 - - - input_encoding - utf8 - - - debug - 0 - - - mincrossrefs - 2 - - - minxrefs - 2 - - - sortcase - 1 - - - sortupper - 1 - - - - - - - alphaothers - + - - - labelalpha - 0 - - - labelnamespec - shortauthor - author - shorteditor - editor - translator - - - labeltitle - 0 - - - labeltitlespec - shorttitle - title - maintitle - - - labeltitleyear - 0 - - - labeldateparts - 0 - - - labeldatespec - date - year - eventdate - origdate - urldate - nodate - - - julian - 0 - - - gregorianstart - 1582-10-15 - - - maxalphanames - 3 - - - maxbibnames - 3 - - - maxcitenames - 3 - - - maxsortnames - 3 - - - maxitems - 3 - - - minalphanames - 1 - - - minbibnames - 1 - - - mincitenames - 1 - - - minsortnames - 1 - - - minitems - 1 - - - nohashothers - 0 - - - noroman - 0 - - - nosortothers - 0 - - - singletitle - 0 - - - skipbib - 0 - - - skipbiblist - 0 - - - skiplab - 0 - - - sortalphaothers - + - - - sortlocale - ngerman - - - sortingtemplatename - none - - - sortsets - 0 - - - uniquelist - false - - - uniquename - false - - - uniqueprimaryauthor - 0 - - - uniquetitle - 0 - - - uniquebaretitle - 0 - - - uniquework - 0 - - - useprefix - 0 - - - useafterword - 1 - - - useannotator - 1 - - - useauthor - 1 - - - usebookauthor - 1 - - - usecommentator - 1 - - - useeditor - 1 - - - useeditora - 1 - - - useeditorb - 1 - - - useeditorc - 1 - - - useforeword - 1 - - - useholder - 1 - - - useintroduction - 1 - - - usenamea - 1 - - - usenameb - 1 - - - usenamec - 1 - - - usetranslator - 0 - - - useshortauthor - 1 - - - useshorteditor - 1 - - - - - datamodel - labelalphanametemplate - labelalphatemplate - inheritance - translit - uniquenametemplate - sortingnamekeytemplate - sortingtemplate - extradatespec - labelnamespec - labeltitlespec - labeldatespec - controlversion - alphaothers - sortalphaothers - presort - texencoding - bibencoding - sortingtemplatename - sortlocale - language - autolang - indexing - hyperref - backrefsetstyle - block - pagetracker - citecounter - citetracker - ibidtracker - idemtracker - opcittracker - loccittracker - labeldate - labeltime - dateera - date - time - eventdate - eventtime - origdate - origtime - urldate - urltime - alldatesusetime - alldates - alltimes - gregorianstart - autocite - notetype - uniquelist - uniquename - refsection - refsegment - citereset - sortlos - babel - datelabel - backrefstyle - arxiv - familyinits - giveninits - prefixinits - suffixinits - useafterword - useannotator - useauthor - usebookauthor - usecommentator - useeditor - useeditora - useeditorb - useeditorc - useforeword - useholder - useintroduction - usenamea - usenameb - usenamec - usetranslator - useshortauthor - useshorteditor - debug - loadfiles - safeinputenc - sortcase - sortupper - terseinits - abbreviate - dateabbrev - clearlang - sortcites - sortsets - backref - parentracker - labeldateusetime - datecirca - dateuncertain - dateusetime - eventdateusetime - origdateusetime - urldateusetime - julian - datezeros - timezeros - timezones - seconds - autopunct - punctfont - labelnumber - labelalpha - labeltitle - labeltitleyear - labeldateparts - nohashothers - nosortothers - noroman - singletitle - uniquetitle - uniquebaretitle - uniquework - uniqueprimaryauthor - defernumbers - locallabelwidth - bibwarn - useprefix - skipbib - skipbiblist - skiplab - dataonly - defernums - firstinits - sortfirstinits - sortgiveninits - labelyear - isbn - url - doi - eprint - related - subentry - mincrossrefs - minxrefs - maxnames - minnames - maxbibnames - minbibnames - maxcitenames - mincitenames - maxsortnames - minsortnames - maxitems - minitems - maxalphanames - minalphanames - maxparens - dateeraauto - - - alphaothers - sortalphaothers - presort - indexing - citetracker - ibidtracker - idemtracker - opcittracker - loccittracker - uniquelist - uniquename - familyinits - giveninits - prefixinits - suffixinits - useafterword - useannotator - useauthor - usebookauthor - usecommentator - useeditor - useeditora - useeditorb - useeditorc - useforeword - useholder - useintroduction - usenamea - usenameb - usenamec - usetranslator - useshortauthor - useshorteditor - terseinits - abbreviate - dateabbrev - clearlang - labelnumber - labelalpha - labeltitle - labeltitleyear - labeldateparts - nohashothers - nosortothers - noroman - singletitle - uniquetitle - uniquebaretitle - uniquework - uniqueprimaryauthor - useprefix - skipbib - skipbiblist - skiplab - dataonly - skiplos - labelyear - isbn - url - doi - eprint - related - subentry - labelalphatemplate - translit - sortexclusion - sortinclusion - labelnamespec - labeltitlespec - labeldatespec - maxnames - minnames - maxbibnames - minbibnames - maxcitenames - mincitenames - maxsortnames - minsortnames - maxitems - minitems - maxalphanames - minalphanames - - - noinherit - nametemplates - labelalphanametemplatename - uniquenametemplatename - sortingnamekeytemplatename - presort - indexing - citetracker - ibidtracker - idemtracker - opcittracker - loccittracker - uniquelist - uniquename - familyinits - giveninits - prefixinits - suffixinits - useafterword - useannotator - useauthor - usebookauthor - usecommentator - useeditor - useeditora - useeditorb - useeditorc - useforeword - useholder - useintroduction - usenamea - usenameb - usenamec - usetranslator - useshortauthor - useshorteditor - terseinits - abbreviate - dateabbrev - clearlang - labelnumber - labelalpha - labeltitle - labeltitleyear - labeldateparts - nohashothers - nosortothers - noroman - singletitle - uniquetitle - uniquebaretitle - uniquework - uniqueprimaryauthor - useprefix - skipbib - skipbiblist - skiplab - dataonly - skiplos - isbn - url - doi - eprint - related - subentry - maxnames - minnames - maxbibnames - minbibnames - maxcitenames - mincitenames - maxsortnames - minsortnames - maxitems - minitems - maxalphanames - minalphanames - - - nametemplates - labelalphanametemplatename - uniquenametemplatename - sortingnamekeytemplatename - uniquelist - uniquename - familyinits - giveninits - prefixinits - suffixinits - terseinits - nohashothers - nosortothers - useprefix - - - nametemplates - labelalphanametemplatename - uniquenametemplatename - sortingnamekeytemplatename - uniquename - familyinits - giveninits - prefixinits - suffixinits - terseinits - useprefix - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - prefix - family - - - - - shorthand - label - labelname - labelname - - - year - - - - - - labelyear - year - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - prefix - family - given - - - - - prefix - family - - - given - - - suffix - - - prefix - - - mm - - - - sf,sm,sn,pf,pm,pn,pp - family,given,prefix,suffix - boolean,integer,string,xml - default,transliteration,transcription,translation - - - article - artwork - audio - bibnote - book - bookinbook - booklet - collection - commentary - customa - customb - customc - customd - custome - customf - dataset - inbook - incollection - inproceedings - inreference - image - jurisdiction - legal - legislation - letter - manual - misc - movie - music - mvcollection - mvreference - mvproceedings - mvbook - online - patent - performance - periodical - proceedings - reference - report - review - set - software - standard - suppbook - suppcollection - suppperiodical - thesis - unpublished - video - xdata - - - sortyear - volume - volumes - abstract - addendum - annotation - booksubtitle - booktitle - booktitleaddon - chapter - edition - eid - entrysubtype - eprintclass - eprinttype - eventtitle - eventtitleaddon - gender - howpublished - indexsorttitle - indextitle - isan - isbn - ismn - isrn - issn - issue - issuesubtitle - issuetitle - iswc - journalsubtitle - journaltitle - label - langid - langidopts - library - mainsubtitle - maintitle - maintitleaddon - nameaddon - note - number - origtitle - pagetotal - part - relatedstring - relatedtype - reprinttitle - series - shorthandintro - subtitle - title - titleaddon - usera - userb - userc - userd - usere - userf - venue - version - shorthand - shortjournal - shortseries - shorttitle - sorttitle - sortshorthand - sortkey - presort - institution - lista - listb - listc - listd - liste - listf - location - organization - origlocation - origpublisher - publisher - afterword - annotator - author - bookauthor - commentator - editor - editora - editorb - editorc - foreword - holder - introduction - namea - nameb - namec - translator - shortauthor - shorteditor - sortname - authortype - editoratype - editorbtype - editorctype - editortype - bookpagination - nameatype - namebtype - namectype - pagination - pubstate - type - language - origlanguage - crossref - xref - date - endyear - year - month - day - hour - minute - second - timezone - season - endmonth - endday - endhour - endminute - endsecond - endtimezone - endseason - eventdate - eventendyear - eventyear - eventmonth - eventday - eventhour - eventminute - eventsecond - eventtimezone - eventseason - eventendmonth - eventendday - eventendhour - eventendminute - eventendsecond - eventendtimezone - eventendseason - origdate - origendyear - origyear - origmonth - origday - orighour - origminute - origsecond - origtimezone - origseason - origendmonth - origendday - origendhour - origendminute - origendsecond - origendtimezone - origendseason - urldate - urlendyear - urlyear - urlmonth - urlday - urlhour - urlminute - urlsecond - urltimezone - urlseason - urlendmonth - urlendday - urlendhour - urlendminute - urlendsecond - urlendtimezone - urlendseason - doi - eprint - file - verba - verbb - verbc - url - xdata - ids - entryset - related - keywords - options - relatedoptions - pages - execute - - - abstract - annotation - authortype - bookpagination - crossref - day - endday - endhour - endminute - endmonth - endseason - endsecond - endtimezone - endyear - entryset - entrysubtype - execute - file - gender - hour - ids - indextitle - indexsorttitle - isan - ismn - iswc - keywords - label - langid - langidopts - library - lista - listb - listc - listd - liste - listf - minute - month - nameaddon - options - origday - origendday - origendhour - origendminute - origendmonth - origendseason - origendsecond - origendtimezone - origendyear - orighour - origminute - origmonth - origseason - origsecond - origtimezone - origyear - origlocation - origpublisher - origtitle - pagination - presort - related - relatedoptions - relatedstring - relatedtype - season - second - shortauthor - shorteditor - shorthand - shorthandintro - shortjournal - shortseries - shorttitle - sortkey - sortname - sortshorthand - sorttitle - sortyear - timezone - url - urlday - urlendday - urlendhour - urlendminute - urlendmonth - urlendsecond - urlendtimezone - urlendyear - urlhour - urlminute - urlmonth - urlsecond - urltimezone - urlyear - usera - userb - userc - userd - usere - userf - verba - verbb - verbc - xdata - xref - year - - - set - entryset - - - article - addendum - annotator - author - commentator - doi - editor - editora - editorb - editorc - editortype - editoratype - editorbtype - editorctype - eid - eprint - eprintclass - eprinttype - issn - issue - issuetitle - issuesubtitle - journalsubtitle - journaltitle - language - note - number - origlanguage - pages - pubstate - series - subtitle - title - titleaddon - translator - version - volume - - - bibnote - note - - - book - author - addendum - afterword - annotator - chapter - commentator - doi - edition - editor - editora - editorb - editorc - editortype - editoratype - editorbtype - editorctype - eprint - eprintclass - eprinttype - foreword - introduction - isbn - language - location - maintitle - maintitleaddon - mainsubtitle - note - number - origlanguage - pages - pagetotal - part - publisher - pubstate - series - subtitle - title - titleaddon - translator - volume - volumes - - - mvbook - addendum - afterword - annotator - author - commentator - doi - edition - editor - editora - editorb - editorc - editortype - editoratype - editorbtype - editorctype - eprint - eprintclass - eprinttype - foreword - introduction - isbn - language - location - note - number - origlanguage - pagetotal - publisher - pubstate - series - subtitle - title - titleaddon - translator - volume - volumes - - - inbook - bookinbook - suppbook - addendum - afterword - annotator - author - booktitle - bookauthor - booksubtitle - booktitleaddon - chapter - commentator - doi - edition - editor - editora - editorb - editorc - editortype - editoratype - editorbtype - editorctype - eprint - eprintclass - eprinttype - foreword - introduction - isbn - language - location - mainsubtitle - maintitle - maintitleaddon - note - number - origlanguage - part - publisher - pages - pubstate - series - subtitle - title - titleaddon - translator - volume - volumes - - - booklet - addendum - author - chapter - doi - editor - editortype - eprint - eprintclass - eprinttype - howpublished - language - location - note - pages - pagetotal - pubstate - subtitle - title - titleaddon - type - - - collection - reference - addendum - afterword - annotator - chapter - commentator - doi - edition - editor - editora - editorb - editorc - editortype - editoratype - editorbtype - editorctype - eprint - eprintclass - eprinttype - foreword - introduction - isbn - language - location - mainsubtitle - maintitle - maintitleaddon - note - number - origlanguage - pages - pagetotal - part - publisher - pubstate - series - subtitle - title - titleaddon - translator - volume - volumes - - - mvcollection - mvreference - addendum - afterword - annotator - author - commentator - doi - edition - editor - editora - editorb - editorc - editortype - editoratype - editorbtype - editorctype - eprint - eprintclass - eprinttype - foreword - introduction - isbn - language - location - note - number - origlanguage - publisher - pubstate - subtitle - title - titleaddon - translator - volume - volumes - - - incollection - suppcollection - inreference - addendum - afterword - annotator - author - booksubtitle - booktitle - booktitleaddon - chapter - commentator - doi - edition - editor - editora - editorb - editorc - editortype - editoratype - editorbtype - editorctype - eprint - eprintclass - eprinttype - foreword - introduction - isbn - language - location - mainsubtitle - maintitle - maintitleaddon - note - number - origlanguage - pages - part - publisher - pubstate - series - subtitle - title - titleaddon - translator - volume - volumes - - - dataset - addendum - author - doi - edition - editor - editortype - eprint - eprintclass - eprinttype - language - location - note - number - organization - publisher - pubstate - series - subtitle - title - titleaddon - type - version - - - manual - addendum - author - chapter - doi - edition - editor - editortype - eprint - eprintclass - eprinttype - isbn - language - location - note - number - organization - pages - pagetotal - publisher - pubstate - series - subtitle - title - titleaddon - type - version - - - misc - software - addendum - author - doi - editor - editortype - eprint - eprintclass - eprinttype - howpublished - language - location - note - organization - pubstate - subtitle - title - titleaddon - type - version - - - online - addendum - author - doi - editor - editortype - eprint - eprintclass - eprinttype - language - note - organization - pubstate - subtitle - title - titleaddon - version - - - patent - addendum - author - doi - eprint - eprintclass - eprinttype - holder - location - note - number - pubstate - subtitle - title - titleaddon - type - version - - - periodical - addendum - doi - editor - editora - editorb - editorc - editortype - editoratype - editorbtype - editorctype - eprint - eprintclass - eprinttype - issn - issue - issuesubtitle - issuetitle - language - note - number - pubstate - season - series - subtitle - title - volume - - - mvproceedings - addendum - doi - editor - editortype - eprint - eprintclass - eprinttype - eventday - eventendday - eventendhour - eventendminute - eventendmonth - eventendseason - eventendsecond - eventendtimezone - eventendyear - eventhour - eventminute - eventmonth - eventseason - eventsecond - eventtimezone - eventyear - eventtitle - eventtitleaddon - isbn - language - location - note - number - organization - pagetotal - publisher - pubstate - series - subtitle - title - titleaddon - venue - volumes - - - proceedings - addendum - chapter - doi - editor - editortype - eprint - eprintclass - eprinttype - eventday - eventendday - eventendhour - eventendminute - eventendmonth - eventendseason - eventendsecond - eventendtimezone - eventendyear - eventhour - eventminute - eventmonth - eventseason - eventsecond - eventtimezone - eventyear - eventtitle - eventtitleaddon - isbn - language - location - mainsubtitle - maintitle - maintitleaddon - note - number - organization - pages - pagetotal - part - publisher - pubstate - series - subtitle - title - titleaddon - venue - volume - volumes - - - inproceedings - addendum - author - booksubtitle - booktitle - booktitleaddon - chapter - doi - editor - editortype - eprint - eprintclass - eprinttype - eventday - eventendday - eventendhour - eventendminute - eventendmonth - eventendseason - eventendsecond - eventendtimezone - eventendyear - eventhour - eventminute - eventmonth - eventseason - eventsecond - eventtimezone - eventyear - eventtitle - eventtitleaddon - isbn - language - location - mainsubtitle - maintitle - maintitleaddon - note - number - organization - pages - part - publisher - pubstate - series - subtitle - title - titleaddon - venue - volume - volumes - - - report - addendum - author - chapter - doi - eprint - eprintclass - eprinttype - institution - isrn - language - location - note - number - pages - pagetotal - pubstate - subtitle - title - titleaddon - type - version - - - thesis - addendum - author - chapter - doi - eprint - eprintclass - eprinttype - institution - language - location - note - pages - pagetotal - pubstate - subtitle - title - titleaddon - type - - - unpublished - addendum - author - eventday - eventendday - eventendhour - eventendminute - eventendmonth - eventendseason - eventendsecond - eventendtimezone - eventendyear - eventhour - eventminute - eventmonth - eventseason - eventsecond - eventtimezone - eventyear - eventtitle - eventtitleaddon - howpublished - language - location - note - pubstate - subtitle - title - titleaddon - type - venue - - - abstract - addendum - afterword - annotator - author - bookauthor - booksubtitle - booktitle - booktitleaddon - chapter - commentator - editor - editora - editorb - editorc - foreword - holder - institution - introduction - issuesubtitle - issuetitle - journalsubtitle - journaltitle - location - mainsubtitle - maintitle - maintitleaddon - nameaddon - note - organization - origlanguage - origlocation - origpublisher - origtitle - part - publisher - relatedstring - series - shortauthor - shorteditor - shorthand - shortjournal - shortseries - shorttitle - sortname - sortshorthand - sorttitle - subtitle - title - titleaddon - translator - venue - - - article - book - inbook - bookinbook - suppbook - booklet - collection - incollection - suppcollection - manual - misc - mvbook - mvcollection - online - patent - periodical - suppperiodical - proceedings - inproceedings - reference - inreference - report - set - thesis - unpublished - - - date - year - - - - - set - - entryset - - - - article - - author - journaltitle - title - - - - book - mvbook - mvcollection - mvreference - - author - title - - - - inbook - bookinbook - suppbook - - author - title - booktitle - - - - booklet - - - author - editor - - title - - - - collection - reference - - editor - title - - - - incollection - suppcollection - inreference - - author - editor - title - booktitle - - - - dataset - - title - - - - manual - - title - - - - misc - software - - title - - - - online - - title - - url - doi - eprint - - - - - patent - - author - title - number - - - - periodical - - editor - title - - - - proceedings - mvproceedings - - editor - title - - - - inproceedings - - author - title - booktitle - - - - report - - author - title - type - institution - - - - thesis - - author - title - type - institution - - - - unpublished - - author - title - - - - - isbn - - - issn - - - ismn - - - date - eventdate - origdate - urldate - - - gender - - - - - - - main.bib - - - - - - - citeorder - - - - - - diff --git a/out/main.blg b/out/main.blg deleted file mode 100644 index 11fafec..0000000 --- a/out/main.blg +++ /dev/null @@ -1,9 +0,0 @@ -[0] Config.pm:304> INFO - This is Biber 2.14 (beta) -[0] Config.pm:307> INFO - Logfile is 'main.blg' -[116] biber:322> INFO - === Sa Jul 31, 2021, 11:14:07 -[135] Biber.pm:415> INFO - Reading 'main.bcf' -[254] Biber.pm:943> INFO - Found 0 citekeys in bib section 0 -[267] Utils.pm:293> WARN - The file 'main.bcf' does not contain any citations! -[286] bbl.pm:652> INFO - Writing 'main.bbl' with encoding 'UTF-8' -[286] bbl.pm:755> INFO - Output to main.bbl -[286] Biber.pm:128> INFO - WARNINGS: 1 diff --git a/out/main.lof b/out/main.lof deleted file mode 100644 index dd8cbf9..0000000 --- a/out/main.lof +++ /dev/null @@ -1,10 +0,0 @@ -\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax -\babel@toc {ngerman}{} -\defcounter {refsection}{0}\relax -\addvspace {10\p@ } -\defcounter {refsection}{0}\relax -\addvspace {10\p@ } -\defcounter {refsection}{0}\relax -\addvspace {10\p@ } -\defcounter {refsection}{0}\relax -\addvspace {10\p@ } diff --git a/out/main.log b/out/main.log deleted file mode 100644 index b69d611..0000000 --- a/out/main.log +++ /dev/null @@ -1,1465 +0,0 @@ -This is XeTeX, Version 3.14159265-2.6-0.999991 (TeX Live 2019/Debian) (preloaded format=xelatex 2021.7.29) 31 JUL 2021 11:14 -entering extended mode - restricted \write18 enabled. - file:line:error style messages enabled. - %&-line parsing enabled. -**main.tex -(./main.tex -LaTeX2e <2020-02-02> patch level 2 -L3 programming layer <2020-02-14> -(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrreprt.cls -Document Class: scrreprt 2020/01/24 v3.29 KOMA-Script document class (report) -(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrkbase.sty -Package: scrkbase 2020/01/24 v3.29 KOMA-Script package (KOMA-Script-dependent b -asics and keyval usage) - -(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrbase.sty -Package: scrbase 2020/01/24 v3.29 KOMA-Script package (KOMA-Script-independent -basics and keyval usage) - -(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty -Package: keyval 2014/10/28 v1.15 key=value parser (DPC) -\KV@toks@=\toks14 -) -(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlfile.sty -Package: scrlfile 2020/01/24 v3.29 KOMA-Script package (loading files) -))) -(/usr/share/texlive/texmf-dist/tex/latex/koma-script/tocbasic.sty -Package: tocbasic 2020/01/24 v3.29 KOMA-Script package (handling toc-files) -\scr@dte@tocline@numberwidth=\skip47 -\scr@dte@tocline@numbox=\box45 -) -Package tocbasic Info: omitting babel extension for `toc' -(tocbasic) because of feature `nobabel' available -(tocbasic) for `toc' on input line 137. -Package scrreprt Info: You've used standard option `12pt'. -(scrreprt) This is correct! -(scrreprt) Internally I'm using `fontsize=12pt'. -(scrreprt) If you'd like to set the option with \KOMAoptions, -(scrreprt) you'd have to use `fontsize=12pt' there -(scrreprt) instead of `12pt', too. -Class scrreprt Info: You've used standard option `oneside'. -(scrreprt) This is correct! -(scrreprt) Internally I'm using `twoside=false'. -(scrreprt) If you'd like to set the option with \KOMAoptions, -(scrreprt) you'd have to use `twoside=false' there -(scrreprt) instead of `oneside', too. -Class scrreprt Info: File `scrsize12pt.clo' used to setup font sizes on input l -ine 2421. - -(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrsize12pt.clo -File: scrsize12pt.clo 2020/01/24 v3.29 KOMA-Script font size class option (12pt -) -) -(/usr/share/texlive/texmf-dist/tex/latex/koma-script/typearea.sty -Package: typearea 2020/01/24 v3.29 KOMA-Script package (type area) -\ta@bcor=\skip48 -\ta@div=\count163 -Package typearea Info: You've used standard option `a4paper'. -(typearea) This is correct! -(typearea) Internally I'm using `paper=a4'. -(typearea) If you'd like to set the option with \KOMAoptions, -(typearea) you'd have to use `paper=a4' there -(typearea) instead of `a4paper', too. -Package typearea Info: You've used standard option `oneside'. -(typearea) This is correct! -(typearea) Internally I'm using `twoside=false'. -(typearea) If you'd like to set the option with \KOMAoptions, -(typearea) you'd have to use `twoside=false' there -(typearea) instead of `oneside', too. -\ta@hblk=\skip49 -\ta@vblk=\skip50 -\ta@temp=\skip51 -\footheight=\skip52 -Package typearea Info: These are the values describing the layout: -(typearea) DIV = 12 -(typearea) BCOR = 0.0pt -(typearea) \paperwidth = 597.50793pt -(typearea) \textwidth = 448.13095pt -(typearea) DIV departure = -6% -(typearea) \evensidemargin = 2.4185pt -(typearea) \oddsidemargin = 2.4185pt -(typearea) \paperheight = 845.04694pt -(typearea) \textheight = 635.5pt -(typearea) \topmargin = -41.72441pt -(typearea) \headheight = 18.125pt -(typearea) \headsep = 21.75pt -(typearea) \topskip = 12.0pt -(typearea) \footskip = 50.75pt -(typearea) \baselineskip = 14.5pt -(typearea) on input line 1719. -) -\c@part=\count164 -\c@chapter=\count165 -\c@section=\count166 -\c@subsection=\count167 -\c@subsubsection=\count168 -\c@paragraph=\count169 -\c@subparagraph=\count170 -\scr@dte@chapter@maxnumwidth=\skip53 -Class scrreprt Info: using compatibility default `afterindent=bysign' -(scrreprt) for `\chapter on input line 5547. -\scr@dte@section@maxnumwidth=\skip54 -Class scrreprt Info: using compatibility default `runin=bysign' -(scrreprt) for `\section on input line 5557. -Class scrreprt Info: using compatibility default `afterindent=bysign' -(scrreprt) for `\section on input line 5557. -\scr@dte@part@maxnumwidth=\skip55 -Class scrreprt Info: using compatibility default `afterindent=true' -(scrreprt) for `\part on input line 5566. -\scr@dte@subsection@maxnumwidth=\skip56 -Class scrreprt Info: using compatibility default `runin=bysign' -(scrreprt) for `\subsection on input line 5576. -Class scrreprt Info: using compatibility default `afterindent=bysign' -(scrreprt) for `\subsection on input line 5576. -\scr@dte@subsubsection@maxnumwidth=\skip57 -Class scrreprt Info: using compatibility default `runin=bysign' -(scrreprt) for `\subsubsection on input line 5586. -Class scrreprt Info: using compatibility default `afterindent=bysign' -(scrreprt) for `\subsubsection on input line 5586. -\scr@dte@paragraph@maxnumwidth=\skip58 -Class scrreprt Info: using compatibility default `runin=bysign' -(scrreprt) for `\paragraph on input line 5596. -Class scrreprt Info: using compatibility default `afterindent=bysign' -(scrreprt) for `\paragraph on input line 5596. -\scr@dte@subparagraph@maxnumwidth=\skip59 -Class scrreprt Info: using compatibility default `runin=bysign' -(scrreprt) for `\subparagraph on input line 5606. -Class scrreprt Info: using compatibility default `afterindent=bysign' -(scrreprt) for `\subparagraph on input line 5606. -\abovecaptionskip=\skip60 -\belowcaptionskip=\skip61 -\c@pti@nb@sid@b@x=\box46 -Package tocbasic Info: omitting babel extension for `lof' -(tocbasic) because of feature `nobabel' available -(tocbasic) for `lof' on input line 6842. -\scr@dte@figure@maxnumwidth=\skip62 -\c@figure=\count171 -Package tocbasic Info: omitting babel extension for `lot' -(tocbasic) because of feature `nobabel' available -(tocbasic) for `lot' on input line 6859. -\scr@dte@table@maxnumwidth=\skip63 -\c@table=\count172 -Class scrreprt Info: Redefining `\numberline' on input line 7028. -\bibindent=\dimen134 -) -\@input{customization/text-variables.aux} -\openout2 = `customization/text-variables.aux'. - -(./customization/text-variables.tex) -(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty -Package: fontenc 2020/02/11 v2.0o Standard LaTeX package -LaTeX Font Info: Trying to load font information for T1+lmr on input line 11 -2. - -(/usr/share/texmf/tex/latex/lm/t1lmr.fd -File: t1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern -)) -(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty -Package: babel 2020/02/14 3.40 The Babel package - -(/usr/share/texlive/texmf-dist/tex/generic/babel/switch.def -File: switch.def 2020/02/14 3.40 Babel switching mechanism -) -(/usr/share/texlive/texmf-dist/tex/generic/babel-german/ngerman.ldf -Language: ngerman 2018/12/08 v2.11 German support for babel (post-1996 orthogra -phy) - -(/usr/share/texlive/texmf-dist/tex/generic/babel-german/ngermanb.ldf -Language: ngermanb 2018/12/08 v2.11 German support for babel (post-1996 orthogr -aphy) - -(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.def -File: babel.def 2020/02/14 3.40 Babel common definitions -\babel@savecnt=\count173 -\U@D=\dimen135 - -(/usr/share/texlive/texmf-dist/tex/generic/babel/xebabel.def -(/usr/share/texlive/texmf-dist/tex/generic/babel/txtbabel.def)) -\bbl@readstream=\read2 -\bbl@dirlevel=\count174 -) -Package babel Info: Making " an active character on input line 121. -))) -(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.sty -Package: csquotes 2019-12-06 v5.2j context-sensitive quotations (JAW) - -(/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty -Package: etoolbox 2019/09/21 v2.5h e-TeX tools for LaTeX (JAW) -\etb@tempcnta=\count175 -) -\csq@reset=\count176 -\csq@gtype=\count177 -\csq@glevel=\count178 -\csq@qlevel=\count179 -\csq@maxlvl=\count180 -\csq@tshold=\count181 -\csq@ltx@everypar=\toks15 - -(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.def -File: csquotes.def 2019-12-06 v5.2j csquotes generic definitions (JAW) -) -Package csquotes Info: Trying to load configuration file 'csquotes.cfg'... -Package csquotes Info: ... configuration file loaded successfully. - -(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.cfg -File: csquotes.cfg -) -Package csquotes Info: Enabling multilingual quotes. -Package csquotes Info: Redefining alias 'german' -> 'german/quotes'. -) -(/usr/share/texlive/texmf-dist/tex/latex/refcheck/refcheck.sty -Package: refcheck 2013/02/14 v1.9.1 -\btoks=\toks16 -) -(/usr/share/texlive/texmf-dist/tex/latex/float/float.sty -Package: float 2001/11/08 v1.3d Float enhancements (AL) -\c@float@type=\count182 -\float@exts=\toks17 -\float@box=\box47 -\@float@everytoks=\toks18 -\@floatcapt=\box48 -) -(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.sty -(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty -(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty -Package: expl3 2020-02-14 L3 programming layer (loader) - -(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-xdvipdfmx.def -File: l3backend-xdvipdfmx.def 2020-02-03 L3 backend support: xdvipdfmx -\g__graphics_track_int=\count183 -\l__pdf_internal_box=\box49 -\g__pdf_backend_object_int=\count184 -\g__pdf_backend_annotation_int=\count185 -)) -Package: xparse 2020-02-14 L3 Experimental document command parser -\l__xparse_current_arg_int=\count186 -\g__xparse_grabber_int=\count187 -\l__xparse_m_args_int=\count188 -\l__xparse_v_nesting_int=\count189 -) -Package: fontspec 2020/02/03 v2.7h Font selection for XeLaTeX and LuaLaTeX - -(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty -Package: fontspec-xetex 2020/02/03 v2.7h Font selection for XeLaTeX and LuaLaTe -X -\l__fontspec_script_int=\count190 -\l__fontspec_language_int=\count191 -\l__fontspec_strnum_int=\count192 -\l__fontspec_tmp_int=\count193 -\l__fontspec_tmpa_int=\count194 -\l__fontspec_tmpb_int=\count195 -\l__fontspec_tmpc_int=\count196 -\l__fontspec_em_int=\count197 -\l__fontspec_emdef_int=\count198 -\l__fontspec_strong_int=\count199 -\l__fontspec_strongdef_int=\count266 -\l__fontspec_tmpa_dim=\dimen136 -\l__fontspec_tmpb_dim=\dimen137 -\l__fontspec_tmpc_dim=\dimen138 - -(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty -Package: fontenc 2020/02/11 v2.0o Standard LaTeX package -) -(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.cfg))) -(/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty -Package: multicol 2019/12/09 v1.8y multicolumn formatting (FMi) -\c@tracingmulticols=\count267 -\mult@box=\box50 -\multicol@leftmargin=\dimen139 -\c@unbalance=\count268 -\c@collectmore=\count269 -\doublecol@number=\count270 -\multicoltolerance=\count271 -\multicolpretolerance=\count272 -\full@width=\dimen140 -\page@free=\dimen141 -\premulticols=\dimen142 -\postmulticols=\dimen143 -\multicolsep=\skip64 -\multicolbaselineskip=\skip65 -\partial@page=\box51 -\last@line=\box52 -\maxbalancingoverflow=\dimen144 -\mult@rightbox=\box53 -\mult@grightbox=\box54 -\mult@gfirstbox=\box55 -\mult@firstbox=\box56 -\@tempa=\box57 -\@tempa=\box58 -\@tempa=\box59 -\@tempa=\box60 -\@tempa=\box61 -\@tempa=\box62 -\@tempa=\box63 -\@tempa=\box64 -\@tempa=\box65 -\@tempa=\box66 -\@tempa=\box67 -\@tempa=\box68 -\@tempa=\box69 -\@tempa=\box70 -\@tempa=\box71 -\@tempa=\box72 -\@tempa=\box73 -\@tempa=\box74 -\@tempa=\box75 -\@tempa=\box76 -\@tempa=\box77 -\@tempa=\box78 -\@tempa=\box79 -\@tempa=\box80 -\@tempa=\box81 -\@tempa=\box82 -\@tempa=\box83 -\@tempa=\box84 -\@tempa=\box85 -\@tempa=\box86 -\@tempa=\box87 -\@tempa=\box88 -\@tempa=\box89 -\@tempa=\box90 -\@tempa=\box91 -\@tempa=\box92 -\@tempa=\box93 -\c@minrows=\count273 -\c@columnbadness=\count274 -\c@finalcolumnbadness=\count275 -\last@try=\dimen145 -\multicolovershoot=\dimen146 -\multicolundershoot=\dimen147 -\mult@nat@firstbox=\box94 -\colbreak@box=\box95 -\mc@col@check@num=\count276 -) -(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty -Package: geometry 2020/01/02 v5.9 Page Geometry - -(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty -Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. - -(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty -Package: iftex 2019/11/07 v1.0c TeX engine tests -)) -\Gm@cnth=\count277 -\Gm@cntv=\count278 -\c@Gm@tempcnt=\count279 -\Gm@bindingoffset=\dimen148 -\Gm@wd@mp=\dimen149 -\Gm@odd@mp=\dimen150 -\Gm@even@mp=\dimen151 -\Gm@layoutwidth=\dimen152 -\Gm@layoutheight=\dimen153 -\Gm@layouthoffset=\dimen154 -\Gm@layoutvoffset=\dimen155 -\Gm@dimlist=\toks19 -) -(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlayer-scrpage.sty -Package: scrlayer-scrpage 2020/01/24 v3.29 KOMA-Script package (end user interf -ace for scrlayer) - -(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlayer.sty -Package: scrlayer 2020/01/24 v3.29 KOMA-Script package (defining layers and pag -e styles) -Package scrlayer Info: Using already defined \footheight -(scrlayer) hoping, that this is a length and -(scrlayer) not only a macro on input line 109. -Package scrlayer Info: patching LaTeX kernel macro \pagestyle on input line 210 -6. -) -Package scrlayer-scrpage Info: Makeing stand-alone element `pagehead' from -(scrlayer-scrpage) alias to `pageheadfoot' on input line 1244. -Package scrlayer-scrpage Info: deactivating warning for font element -(scrlayer-scrpage) `pagefoot' on input line 1271. -) -Package scrlayer-scrpage Info: auto-selection of `pagestyleset=KOMA-Script'. - -(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty -Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR) - -(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty -Package: graphics 2019/11/30 v1.4a Standard LaTeX Graphics (DPC,SPQR) - -(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty -Package: trig 2016/01/03 v1.10 sin cos tan (DPC) -) -(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg -File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration -) -Package graphics Info: Driver file: xetex.def on input line 105. - -(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/xetex.def -File: xetex.def 2017/06/24 v5.0h Graphics/color driver for xetex -)) -\Gin@req@height=\dimen156 -\Gin@req@width=\dimen157 -) -(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty -Package: hyperref 2020/01/14 v7.00d Hypertext links for LaTeX - -(/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty -Package: ltxcmds 2019/12/15 v1.24 LaTeX kernel commands for general use (HO) -) -(/usr/share/texlive/texmf-dist/tex/latex/pdftexcmds/pdftexcmds.sty -Package: pdftexcmds 2019/11/24 v0.31 Utility functions of pdfTeX for LuaTeX (HO -) - -(/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty -Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO) -) -Package pdftexcmds Info: \pdf@primitive is available. -Package pdftexcmds Info: \pdf@ifprimitive is available. -Package pdftexcmds Info: \pdfdraftmode not found. -) -(/usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty -Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO) -) -(/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty -Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO) -) -(/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty -Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO) -) -(/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty -Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO) -) -(/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty -Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO) -) -(/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty -Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO) -) -(/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty -Package: kvoptions 2019/11/29 v3.13 Key value format for package options (HO) -) -\@linkdim=\dimen158 -\Hy@linkcounter=\count280 -\Hy@pagecounter=\count281 - -(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def -File: pd1enc.def 2020/01/14 v7.00d Hyperref: PDFDocEncoding definition (HO) -) -(/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty -Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO) -) -(/usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty -Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO) -) -\Hy@SavedSpaceFactor=\count282 - - -Package hyperref Warning: XeTeX driver only supports unicode. -(hyperref) Enabling option `unicode'. - -Package hyperref Info: Option `unicode' set `true' on input line 4421. -(/usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def -File: puenc.def 2020/01/14 v7.00d Hyperref: PDF Unicode definition (HO) -) -Package hyperref Info: Option `pdfdisplaydoctitle' set `true' on input line 442 -1. -Package hyperref Info: Hyper figures OFF on input line 4547. -Package hyperref Info: Link nesting OFF on input line 4552. -Package hyperref Info: Hyper index ON on input line 4555. -Package hyperref Info: Plain pages OFF on input line 4562. -Package hyperref Info: Backreferencing OFF on input line 4567. -Package hyperref Info: Implicit mode ON; LaTeX internals redefined. -Package hyperref Info: Bookmarks ON on input line 4800. -\c@Hy@tempcnt=\count283 - -(/usr/share/texlive/texmf-dist/tex/latex/url/url.sty -\Urlmuskip=\muskip16 -Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. -) -LaTeX Info: Redefining \url on input line 5159. -\XeTeXLinkMargin=\dimen159 - -(/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty -Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO) - -(/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty -Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO -) -)) -\Fld@menulength=\count284 -\Field@Width=\dimen160 -\Fld@charsize=\dimen161 -Package hyperref Info: Hyper figures OFF on input line 6430. -Package hyperref Info: Link nesting OFF on input line 6435. -Package hyperref Info: Hyper index ON on input line 6438. -Package hyperref Info: backreferencing OFF on input line 6445. -Package hyperref Info: Link coloring OFF on input line 6450. -Package hyperref Info: Link coloring with OCG OFF on input line 6455. -Package hyperref Info: PDF/A mode OFF on input line 6460. -LaTeX Info: Redefining \ref on input line 6500. -LaTeX Info: Redefining \pageref on input line 6504. - -(/usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty -Package: atbegshi 2019/12/05 v1.19 At begin shipout hook (HO) -) -\Hy@abspage=\count285 -\c@Item=\count286 -\c@Hfootnote=\count287 -) -Package hyperref Info: Driver (autodetected): hxetex. - -(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hxetex.def -File: hxetex.def 2020/01/14 v7.00d Hyperref driver for XeTeX - -(/usr/share/texlive/texmf-dist/tex/generic/stringenc/stringenc.sty -Package: stringenc 2019/11/29 v1.12 Convert strings between diff. encodings (HO -) -) -\pdfm@box=\box96 -\c@Hy@AnnotLevel=\count288 -\HyField@AnnotCount=\count289 -\Fld@listcount=\count290 -\c@bookmark@seq@number=\count291 - -(/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty -Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO) - -(/usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty -Package: atveryend 2019-12-11 v1.11 Hooks at the very end of document (HO) -) -(/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty -Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO) -) -Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2 -86. -) -\Hy@SectionHShift=\skip66 -) -(/usr/share/texlive/texmf-dist/tex/latex/setspace/setspace.sty -Package: setspace 2011/12/19 v6.7a set line spacing -) -(/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty -Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK) - -(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg -File: color.cfg 2016/01/02 v1.6 sample color configuration -) -Package xcolor Info: Driver file: xetex.def on input line 225. -Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348. -Package xcolor Info: Model `RGB' extended on input line 1364. -Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366. -Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367. -Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368. -Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369. -Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370. -Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371. -) -(/usr/share/texlive/texmf-dist/tex/latex/glossaries/base/glossaries.sty -Package: glossaries 2020/02/13 v4.45 (NLCT) - -(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty -Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC) -) -(/usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty -Package: xkeyval 2014/12/03 v2.7a package option processing (HA) - -(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkeyval.tex -(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkvutils.tex -\XKV@toks=\toks20 -\XKV@tempa@toks=\toks21 -) -\XKV@depth=\count292 -File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) -)) -(/usr/share/texlive/texmf-dist/tex/latex/mfirstuc/mfirstuc.sty -Package: mfirstuc 2017/11/14 v2.06 (NLCT) -\@glsmfirst=\toks22 -\@glsmrest=\toks23 -) -(/usr/share/texlive/texmf-dist/tex/latex/textcase/textcase.sty -Package: textcase 2019/09/14 v1.00 Text only upper/lower case changing (DPC) -) -(/usr/share/texlive/texmf-dist/tex/latex/xfor/xfor.sty -Package: xfor 2009/02/05 v1.05 (NLCT) -) -(/usr/share/texlive/texmf-dist/tex/latex/datatool/datatool-base.sty -Package: datatool-base 2019/09/27 v2.32 (NLCT) - -(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty -Package: amsmath 2020/01/20 v2.17e AMS math features -\@mathmargin=\skip67 - -For additional information on amsmath, use the `?' option. -(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty -Package: amstext 2000/06/29 v2.01 AMS text - -(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty -File: amsgen.sty 1999/11/30 v2.0 generic functions -\@emptytoks=\toks24 -\ex@=\dimen162 -)) -(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty -Package: amsbsy 1999/11/29 v1.2d Bold Symbols -\pmbraise@=\dimen163 -) -(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty -Package: amsopn 2016/03/08 v2.02 operator names -) -\inf@bad=\count293 -LaTeX Info: Redefining \frac on input line 227. -\uproot@=\count294 -\leftroot@=\count295 -LaTeX Info: Redefining \overline on input line 389. -\classnum@=\count296 -\DOTSCASE@=\count297 -LaTeX Info: Redefining \ldots on input line 486. -LaTeX Info: Redefining \dots on input line 489. -LaTeX Info: Redefining \cdots on input line 610. -\Mathstrutbox@=\box97 -\strutbox@=\box98 -\big@size=\dimen164 -LaTeX Font Info: Redeclaring font encoding OML on input line 733. -LaTeX Font Info: Redeclaring font encoding OMS on input line 734. -\macc@depth=\count298 -\c@MaxMatrixCols=\count299 -\dotsspace@=\muskip17 -\c@parentequation=\count300 -\dspbrk@lvl=\count301 -\tag@help=\toks25 -\row@=\count302 -\column@=\count303 -\maxfields@=\count304 -\andhelp@=\toks26 -\eqnshift@=\dimen165 -\alignsep@=\dimen166 -\tagshift@=\dimen167 -\tagwidth@=\dimen168 -\totwidth@=\dimen169 -\lineht@=\dimen170 -\@envbody=\toks27 -\multlinegap=\skip68 -\multlinetaggap=\skip69 -\mathdisplay@stack=\toks28 -LaTeX Info: Redefining \[ on input line 2859. -LaTeX Info: Redefining \] on input line 2860. -) -(/usr/share/texlive/texmf-dist/tex/latex/substr/substr.sty -Package: substr 2009/10/20 v1.2 Handle substrings -\c@su@anzahl=\count305 -) -(/usr/share/texlive/texmf-dist/tex/latex/datatool/datatool-fp.sty -Package: datatool-fp 2019/09/27 v2.32 (NLCT) - -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp.sty -Package: fp 1995/04/02 - -`Fixed Point Package', Version 0.8, April 2, 1995 (C) Michael Mehlich -(/usr/share/texlive/texmf-dist/tex/latex/fp/defpattern.sty -Package: defpattern 1994/10/12 -\actioncount=\count306 -) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-basic.sty -Package: fp-basic 1996/05/13 -\FP@xs=\count307 -\FP@xia=\count308 -\FP@xib=\count309 -\FP@xfa=\count310 -\FP@xfb=\count311 -\FP@rega=\count312 -\FP@regb=\count313 -\FP@regs=\count314 -\FP@times=\count315 -) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-addons.sty -Package: fp-addons 1995/03/15 -) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-snap.sty -Package: fp-snap 1995/04/05 -) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-exp.sty -Package: fp-exp 1995/04/03 -) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-trigo.sty -Package: fp-trigo 1995/04/14 -) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-pas.sty -Package: fp-pas 1994/08/29 -) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-random.sty -Package: fp-random 1995/02/23 -\FPseed=\count316 -) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-eqn.sty -Package: fp-eqn 1995/04/03 -) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-upn.sty -Package: fp-upn 1996/10/21 -) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-eval.sty -Package: fp-eval 1995/04/03 -))) -\@dtl@toks=\toks29 -\@dtl@tmpcount=\count317 -\dtl@tmplength=\skip70 -\dtl@sortresult=\count318 -\@dtl@numgrpsepcount=\count319 -\@dtl@datatype=\count320 -\dtl@codeA=\count321 -\dtl@codeB=\count322 -\@dtl@foreach@level=\count323 -) -(/usr/share/texlive/texmf-dist/tex/latex/glossaries/base/glossaries-compatible- -307.sty -Package: glossaries-compatible-307 2020/02/13 v4.45 (NLCT) -) (/usr/share/texlive/texmf-dist/tex/latex/tracklang/tracklang.sty -Package: tracklang 2019/11/30 v1.4 (NLCT) Track Languages - -(/usr/share/texlive/texmf-dist/tex/generic/tracklang/tracklang.tex)) -(/usr/share/texlive/texmf-dist/tex/latex/translator/translator.sty -Package: translator 2019-05-31 v1.12a Easy translation of strings in LaTeX -) -(/usr/share/texlive/texmf-dist/tex/latex/glossaries-german/glossaries-german.ld -f -File: glossaries-german.ldf 2014/11/23 v1.0 -) -\gls@level=\count324 -\@gls@tmpb=\toks30 -\gls@tmplen=\skip71 -\glskeylisttok=\toks31 -\glslabeltok=\toks32 -\glsshorttok=\toks33 -\glslongtok=\toks34 - -(/usr/share/texlive/texmf-dist/tex/latex/glossaries/styles/glossary-hypernav.st -y -Package: glossary-hypernav 2020/02/13 v4.45 (NLCT) -) (/usr/share/texlive/texmf-dist/tex/latex/glossaries/styles/glossary-list.sty -Package: glossary-list 2020/02/13 v4.45 (NLCT) -\glslistdottedwidth=\skip72 -) (/usr/share/texlive/texmf-dist/tex/latex/glossaries/styles/glossary-long.sty -Package: glossary-long 2020/02/13 v4.45 (NLCT) - -(/usr/share/texlive/texmf-dist/tex/latex/tools/longtable.sty -Package: longtable 2020/01/07 v4.13 Multi-page Table package (DPC) -\LTleft=\skip73 -\LTright=\skip74 -\LTpre=\skip75 -\LTpost=\skip76 -\LTchunksize=\count325 -\LTcapwidth=\dimen171 -\LT@head=\box99 -\LT@firsthead=\box100 -\LT@foot=\box101 -\LT@lastfoot=\box102 -\LT@cols=\count326 -\LT@rows=\count327 -\c@LT@tables=\count328 -\c@LT@chunks=\count329 -\LT@p@ftn=\toks35 -) -Class scrreprt Info: longtable captions redefined on input line 43. -\glsdescwidth=\skip77 -\glspagelistwidth=\skip78 -) -(/usr/share/texlive/texmf-dist/tex/latex/glossaries/styles/glossary-super.sty -Package: glossary-super 2020/02/13 v4.45 (NLCT) - -(/usr/share/texlive/texmf-dist/tex/latex/supertabular/supertabular.sty -Package: supertabular 2020/02/02 v4.1g the supertabular environment -\c@tracingst=\count330 -\ST@wd=\dimen172 -\ST@rightskip=\skip79 -\ST@leftskip=\skip80 -\ST@parfillskip=\skip81 -\ST@pageleft=\dimen173 -\ST@headht=\dimen174 -\ST@tailht=\dimen175 -\ST@pagesofar=\dimen176 -\ST@pboxht=\dimen177 -\ST@lineht=\dimen178 -\ST@prevht=\dimen179 -\ST@toadd=\dimen180 -\ST@dimen=\dimen181 -\ST@pbox=\box103 -)) -(/usr/share/texlive/texmf-dist/tex/latex/glossaries/styles/glossary-tree.sty -Package: glossary-tree 2020/02/13 v4.45 (NLCT) -\glstreeindent=\skip82 -)) -(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty -\lst@mode=\count331 -\lst@gtempboxa=\box104 -\lst@token=\toks36 -\lst@length=\count332 -\lst@currlwidth=\dimen182 -\lst@column=\count333 -\lst@pos=\count334 -\lst@lostspace=\dimen183 -\lst@width=\dimen184 -\lst@newlines=\count335 -\lst@lineno=\count336 -\lst@maxwidth=\dimen185 - -(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty -File: lstmisc.sty 2019/09/10 1.8c (Carsten Heinz) -\c@lstnumber=\count337 -\lst@skipnumbers=\count338 -\lst@framebox=\box105 -) -(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg -File: listings.cfg 2019/09/10 1.8c listings configuration -)) -Package: listings 2019/09/10 1.8c (Carsten Heinz) - -(/usr/share/texlive/texmf-dist/tex/latex/anyfontsize/anyfontsize.sty -Invalid UTF-8 byte or sequence at line 3 replaced by U+FFFD. -Invalid UTF-8 byte or sequence at line 3 replaced by U+FFFD. -Package: anyfontsize 2007/11/22 anyfontsize.sty by pts -) -(/usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty -Package: biblatex 2019/12/01 v3.14 programmable bibliographies (PK/MW) - -(/usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty -Package: logreq 2010/08/04 v1.0 xml request logger -\lrq@indent=\count339 - -(/usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.def -File: logreq.def 2010/08/04 v1.0 logreq spec v1.0 -)) -\c@tabx@nest=\count340 -\c@listtotal=\count341 -\c@listcount=\count342 -\c@liststart=\count343 -\c@liststop=\count344 -\c@citecount=\count345 -\c@citetotal=\count346 -\c@multicitecount=\count347 -\c@multicitetotal=\count348 -\c@instcount=\count349 -\c@maxnames=\count350 -\c@minnames=\count351 -\c@maxitems=\count352 -\c@minitems=\count353 -\c@citecounter=\count354 -\c@maxcitecounter=\count355 -\c@savedcitecounter=\count356 -\c@uniquelist=\count357 -\c@uniquename=\count358 -\c@refsection=\count359 -\c@refsegment=\count360 -\c@maxextratitle=\count361 -\c@maxextratitleyear=\count362 -\c@maxextraname=\count363 -\c@maxextradate=\count364 -\c@maxextraalpha=\count365 -\c@abbrvpenalty=\count366 -\c@highnamepenalty=\count367 -\c@lownamepenalty=\count368 -\c@maxparens=\count369 -\c@parenlevel=\count370 -\blx@tempcnta=\count371 -\blx@tempcntb=\count372 -\blx@tempcntc=\count373 -\blx@maxsection=\count374 -\blx@maxsegment@0=\count375 -\blx@notetype=\count376 -\blx@parenlevel@text=\count377 -\blx@parenlevel@foot=\count378 -\blx@sectionciteorder@0=\count379 -\blx@entrysetcounter=\count380 -\labelnumberwidth=\skip83 -\labelalphawidth=\skip84 -\biblabelsep=\skip85 -\bibitemsep=\skip86 -\bibnamesep=\skip87 -\bibinitsep=\skip88 -\bibparsep=\skip89 -\bibhang=\skip90 -\blx@bcfin=\read3 -\blx@bcfout=\write3 -\blx@langwohyphens=\language85 -\c@mincomprange=\count381 -\c@maxcomprange=\count382 -\c@mincompwidth=\count383 -Package biblatex Info: Trying to load biblatex default data model... -Package biblatex Info: ... file 'blx-dm.def' found. - -(/usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-dm.def -File: blx-dm.def 2019/12/01 v3.14 biblatex localization (PK/MW) -) -Package biblatex Info: Trying to load biblatex style data model... -Package biblatex Info: ... file 'numeric-comp.dbx' not found. -Package biblatex Info: Trying to load biblatex custom data model... -Package biblatex Info: ... file 'biblatex-dm.cfg' not found. -\c@afterword=\count384 -\c@savedafterword=\count385 -\c@annotator=\count386 -\c@savedannotator=\count387 -\c@author=\count388 -\c@savedauthor=\count389 -\c@bookauthor=\count390 -\c@savedbookauthor=\count391 -\c@commentator=\count392 -\c@savedcommentator=\count393 -\c@editor=\count394 -\c@savededitor=\count395 -\c@editora=\count396 -\c@savededitora=\count397 -\c@editorb=\count398 -\c@savededitorb=\count399 -\c@editorc=\count400 -\c@savededitorc=\count401 -\c@foreword=\count402 -\c@savedforeword=\count403 -\c@holder=\count404 -\c@savedholder=\count405 -\c@introduction=\count406 -\c@savedintroduction=\count407 -\c@namea=\count408 -\c@savednamea=\count409 -\c@nameb=\count410 -\c@savednameb=\count411 -\c@namec=\count412 -\c@savednamec=\count413 -\c@translator=\count414 -\c@savedtranslator=\count415 -\c@shortauthor=\count416 -\c@savedshortauthor=\count417 -\c@shorteditor=\count418 -\c@savedshorteditor=\count419 -\c@labelname=\count420 -\c@savedlabelname=\count421 -\c@institution=\count422 -\c@savedinstitution=\count423 -\c@lista=\count424 -\c@savedlista=\count425 -\c@listb=\count426 -\c@savedlistb=\count427 -\c@listc=\count428 -\c@savedlistc=\count429 -\c@listd=\count430 -\c@savedlistd=\count431 -\c@liste=\count432 -\c@savedliste=\count433 -\c@listf=\count434 -\c@savedlistf=\count435 -\c@location=\count436 -\c@savedlocation=\count437 -\c@organization=\count438 -\c@savedorganization=\count439 -\c@origlocation=\count440 -\c@savedoriglocation=\count441 -\c@origpublisher=\count442 -\c@savedorigpublisher=\count443 -\c@publisher=\count444 -\c@savedpublisher=\count445 -\c@language=\count446 -\c@savedlanguage=\count447 -\c@origlanguage=\count448 -\c@savedoriglanguage=\count449 -\c@pageref=\count450 -\c@savedpageref=\count451 -\shorthandwidth=\skip91 -\shortjournalwidth=\skip92 -\shortserieswidth=\skip93 -\shorttitlewidth=\skip94 -\shortauthorwidth=\skip95 -\shorteditorwidth=\skip96 -\locallabelnumberwidth=\skip97 -\locallabelalphawidth=\skip98 -\localshorthandwidth=\skip99 -\localshortjournalwidth=\skip100 -\localshortserieswidth=\skip101 -\localshorttitlewidth=\skip102 -\localshortauthorwidth=\skip103 -\localshorteditorwidth=\skip104 -Package biblatex Info: Trying to load enhanced support for Unicode engines... -Package biblatex Info: ... file 'blx-unicode.def' found. - -(/usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-unicode.def) -Package biblatex Info: Trying to load compatibility code... -Package biblatex Info: ... file 'blx-compat.def' found. - -(/usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-compat.def -File: blx-compat.def 2019/12/01 v3.14 biblatex compatibility (PK/MW) -) -Package biblatex Info: Trying to load generic definitions... -Package biblatex Info: ... file 'biblatex.def' found. - -(/usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.def -File: biblatex.def 2019/12/01 v3.14 biblatex compatibility (PK/MW) -\c@textcitecount=\count452 -\c@textcitetotal=\count453 -\c@textcitemaxnames=\count454 -\c@biburlbigbreakpenalty=\count455 -\c@biburlbreakpenalty=\count456 -\c@biburlnumpenalty=\count457 -\c@biburlucpenalty=\count458 -\c@biburllcpenalty=\count459 -\biburlbigskip=\muskip18 -\biburlnumskip=\muskip19 -\biburlucskip=\muskip20 -\biburllcskip=\muskip21 -\c@smartand=\count460 -) -Package biblatex Info: Trying to load bibliography style 'numeric-comp'... -Package biblatex Info: ... file 'numeric-comp.bbx' found. - -(/usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/numeric-comp.bbx -File: numeric-comp.bbx 2019/12/01 v3.14 biblatex bibliography style (PK/MW) -Package biblatex Info: Trying to load bibliography style 'numeric'... -Package biblatex Info: ... file 'numeric.bbx' found. - -(/usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/numeric.bbx -File: numeric.bbx 2019/12/01 v3.14 biblatex bibliography style (PK/MW) -Package biblatex Info: Trying to load bibliography style 'standard'... -Package biblatex Info: ... file 'standard.bbx' found. - -(/usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/standard.bbx -File: standard.bbx 2019/12/01 v3.14 biblatex bibliography style (PK/MW) -\c@bbx:relatedcount=\count461 -\c@bbx:relatedtotal=\count462 -))) -Package biblatex Info: Trying to load citation style 'numeric-comp'... -Package biblatex Info: ... file 'numeric-comp.cbx' found. - -(/usr/share/texlive/texmf-dist/tex/latex/biblatex/cbx/numeric-comp.cbx -File: numeric-comp.cbx 2019/12/01 v3.14 biblatex citation style (PK/MW) -\c@cbx@tempcnta=\count463 -\c@cbx@tempcntb=\count464 -Package biblatex Info: Redefining '\cite'. -Package biblatex Info: Redefining '\parencite'. -Package biblatex Info: Redefining '\footcite'. -Package biblatex Info: Redefining '\footcitetext'. -Package biblatex Info: Redefining '\smartcite'. -Package biblatex Info: Redefining '\supercite'. -Package biblatex Info: Redefining '\textcite'. -Package biblatex Info: Redefining '\textcites'. -Package biblatex Info: Redefining '\cites'. -Package biblatex Info: Redefining '\parencites'. -Package biblatex Info: Redefining '\smartcites'. -) -Package biblatex Info: Trying to load configuration file... -Package biblatex Info: ... file 'biblatex.cfg' found. - -(/usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.cfg -File: biblatex.cfg -)) -\@input{customization/variables.aux} -\openout2 = `customization/variables.aux'. - -(./customization/variables.tex) -\@input{customization/style.aux} -\openout2 = `customization/style.aux'. - -(./customization/style.tex - -Package fontspec Info: Font family 'Ubuntu(0)' created for font 'Ubuntu' with -(fontspec) options [Ligatures=TeX]. -(fontspec) -(fontspec) This font family consists of the following NFSS -(fontspec) series/shapes: -(fontspec) -(fontspec) - 'normal' (m/n) with NFSS spec.: -(fontspec) <->"Ubuntu/OT:script=latn;language=dflt;mapping=tex-text -;" -(fontspec) - 'small caps' (m/sc) with NFSS spec.: -(fontspec) - 'bold' (b/n) with NFSS spec.: -(fontspec) <->"Ubuntu/B/OT:script=latn;language=dflt;mapping=tex-te -xt;" -(fontspec) - 'bold small caps' (b/sc) with NFSS spec.: -(fontspec) - 'italic' (m/it) with NFSS spec.: -(fontspec) <->"Ubuntu/I/OT:script=latn;language=dflt;mapping=tex-te -xt;" -(fontspec) - 'italic small caps' (m/scit) with NFSS spec.: -(fontspec) - 'bold italic' (b/it) with NFSS spec.: -(fontspec) <->"Ubuntu/BI/OT:script=latn;language=dflt;mapping=tex-t -ext;" -(fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.: - - -1: chapter -1: chapter -\@float@every@lstfloat=\toks37 -\c@lstfloat=\count465 -) -\@input{includes/acronyms.aux} -\openout2 = `includes/acronyms.aux'. - -(./includes/acronyms.tex) -Package csquotes Info: Checking for multilingual support... -Package csquotes Info: ... found 'babel' package. - -(/home/florian/Dokumente/Programmieren/IntelliJIDEAProjects/LaTex_Hausarbeit_Te -mplate/out/main.aux -(/home/florian/Dokumente/Programmieren/IntelliJIDEAProjects/LaTex_Hausarbeit_Te -mplate/out/includes/cover.aux) -(/home/florian/Dokumente/Programmieren/IntelliJIDEAProjects/LaTex_Hausarbeit_Te -mplate/out/includes/statementofauthorship.aux) -(/home/florian/Dokumente/Programmieren/IntelliJIDEAProjects/LaTex_Hausarbeit_Te -mplate/out/includes/abstract.aux) -(/home/florian/Dokumente/Programmieren/IntelliJIDEAProjects/LaTex_Hausarbeit_Te -mplate/out/content/02-00-chapter.aux) -(/home/florian/Dokumente/Programmieren/IntelliJIDEAProjects/LaTex_Hausarbeit_Te -mplate/out/content/03-00-chapter.aux)) -\openout1 = `main.aux'. - -LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 33. -LaTeX Font Info: ... okay on input line 33. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 33. -LaTeX Font Info: ... okay on input line 33. -LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 33. -LaTeX Font Info: ... okay on input line 33. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 33. -LaTeX Font Info: ... okay on input line 33. -LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 33. -LaTeX Font Info: Trying to load font information for TS1+cmr on input line 3 -3. - -(/usr/share/texlive/texmf-dist/tex/latex/base/ts1cmr.fd -File: ts1cmr.fd 2019/12/16 v2.5j Standard LaTeX font definitions -) -LaTeX Font Info: ... okay on input line 33. -LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 33. -LaTeX Font Info: ... okay on input line 33. -LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 33. -LaTeX Font Info: ... okay on input line 33. -LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 33. -LaTeX Font Info: ... okay on input line 33. -LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 33. -LaTeX Font Info: ... okay on input line 33. -LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 33. -LaTeX Font Info: ... okay on input line 33. - -Package: `refcheck' v1.9.1 <2013/02/14> -options: showrefs, showcites, msgs, chckunlbld - -Package fontspec Info: Adjusting the maths setup (use [no-math] to avoid -(fontspec) this). - -\symlegacymaths=\mathgroup4 -LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold' -(Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 33. -LaTeX Font Info: Redeclaring math accent \acute on input line 33. -LaTeX Font Info: Redeclaring math accent \grave on input line 33. -LaTeX Font Info: Redeclaring math accent \ddot on input line 33. -LaTeX Font Info: Redeclaring math accent \tilde on input line 33. -LaTeX Font Info: Redeclaring math accent \bar on input line 33. -LaTeX Font Info: Redeclaring math accent \breve on input line 33. -LaTeX Font Info: Redeclaring math accent \check on input line 33. -LaTeX Font Info: Redeclaring math accent \hat on input line 33. -LaTeX Font Info: Redeclaring math accent \dot on input line 33. -LaTeX Font Info: Redeclaring math accent \mathring on input line 33. -LaTeX Font Info: Redeclaring math symbol \Gamma on input line 33. -LaTeX Font Info: Redeclaring math symbol \Delta on input line 33. -LaTeX Font Info: Redeclaring math symbol \Theta on input line 33. -LaTeX Font Info: Redeclaring math symbol \Lambda on input line 33. -LaTeX Font Info: Redeclaring math symbol \Xi on input line 33. -LaTeX Font Info: Redeclaring math symbol \Pi on input line 33. -LaTeX Font Info: Redeclaring math symbol \Sigma on input line 33. -LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 33. -LaTeX Font Info: Redeclaring math symbol \Phi on input line 33. -LaTeX Font Info: Redeclaring math symbol \Psi on input line 33. -LaTeX Font Info: Redeclaring math symbol \Omega on input line 33. -LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 33. -LaTeX Font Info: Redeclaring symbol font `operators' on input line 33. -LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font -(Font) `operators' in the math version `normal' on input line 33. -LaTeX Font Info: Overwriting symbol font `operators' in version `normal' -(Font) OT1/cmr/m/n --> TU/Ubuntu(0)/m/n on input line 33. -LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font -(Font) `operators' in the math version `bold' on input line 33. -LaTeX Font Info: Overwriting symbol font `operators' in version `bold' -(Font) OT1/cmr/bx/n --> TU/Ubuntu(0)/m/n on input line 33. -LaTeX Font Info: Overwriting symbol font `operators' in version `normal' -(Font) TU/Ubuntu(0)/m/n --> TU/Ubuntu(0)/m/n on input line 33. - -LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' -(Font) OT1/cmr/m/it --> TU/Ubuntu(0)/m/it on input line 33. -LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' -(Font) OT1/cmr/bx/n --> TU/Ubuntu(0)/b/n on input line 33. -LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' -(Font) OT1/cmss/m/n --> TU/lmss/m/n on input line 33. -LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' -(Font) OT1/cmtt/m/n --> TU/lmtt/m/n on input line 33. -LaTeX Font Info: Overwriting symbol font `operators' in version `bold' -(Font) TU/Ubuntu(0)/m/n --> TU/Ubuntu(0)/b/n on input line 33. - -LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' -(Font) OT1/cmr/bx/it --> TU/Ubuntu(0)/b/it on input line 33. -LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' -(Font) OT1/cmss/bx/n --> TU/lmss/b/n on input line 33. -LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' -(Font) OT1/cmtt/m/n --> TU/lmtt/b/n on input line 33. -*geometry* driver: auto-detecting -*geometry* detected driver: xetex -*geometry* verbose mode - [ preamble ] result: -* driver: xetex -* paper: a4paper -* layout: -* layoutoffset:(h,v)=(0.0pt,0.0pt) -* modes: includehead includefoot -* h-part:(L,W,R)=(113.81102pt, 412.56497pt, 71.13188pt) -* v-part:(T,H,B)=(71.13188pt, 702.78308pt, 71.13188pt) -* \paperwidth=597.50787pt -* \paperheight=845.04684pt -* \textwidth=412.56497pt -* \textheight=634.45534pt -* \oddsidemargin=41.54103pt -* \evensidemargin=41.54103pt -* \topmargin=-1.1381pt -* \headheight=18.125pt -* \headsep=21.75pt -* \topskip=12.0pt -* \footskip=28.45274pt -* \marginparwidth=49.79233pt -* \marginparsep=12.8401pt -* \columnsep=10.0pt -* \skip\footins=10.8pt plus 4.0pt minus 2.0pt -* \hoffset=0.0pt -* \voffset=0.0pt -* \mag=1000 -* \@twocolumnfalse -* \@twosidefalse -* \@mparswitchfalse -* \@reversemarginfalse -* (1in=72.27pt=25.4mm, 1cm=28.453pt) - -\AtBeginShipoutBox=\box106 -Package hyperref Info: Link coloring OFF on input line 33. -(/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty -Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section - -(/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty -Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO) -) -(/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty -Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO) -) -\c@section@level=\count466 -) -LaTeX Info: Redefining \ref on input line 33. -LaTeX Info: Redefining \pageref on input line 33. -LaTeX Info: Redefining \nameref on input line 33. - -(/home/florian/Dokumente/Programmieren/IntelliJIDEAProjects/LaTex_Hausarbeit_Te -mplate/out/main.out) -(/home/florian/Dokumente/Programmieren/IntelliJIDEAProjects/LaTex_Hausarbeit_Te -mplate/out/main.out) -\@outlinefile=\write4 -\openout4 = `main.out'. - -Class scrreprt Info: loading recommended package `bookmark'. -(scrreprt) Using `bookmark' together with `hyperref' is recommended, -(scrreprt) because of handling of possible bookmark level gaps. -(scrreprt) You can avoid loading `bookmark' with KOMA-Script option -(scrreprt) `bookmarkpackage=false' before \begin{document} and -(scrreprt) you can avoid this message adding: -(scrreprt) \usepackage{bookmark} -(scrreprt) before \begin{document} on input line 33. - -(/usr/share/texlive/texmf-dist/tex/latex/bookmark/bookmark.sty -Package: bookmark 2019/12/03 v1.28 PDF bookmarks (HO) - -(/usr/share/texlive/texmf-dist/tex/latex/bookmark/bkm-dvipdfm.def -File: bkm-dvipdfm.def 2019/12/03 v1.28 bookmark driver for dvipdfm (HO) -\BKM@id=\count467 -)) -\c@lstlisting=\count468 -Package biblatex Info: Trying to load language 'ngerman'... -Package biblatex Info: ... file 'ngerman.lbx' found. - -(/usr/share/texlive/texmf-dist/tex/latex/biblatex/lbx/ngerman.lbx -File: ngerman.lbx 2019/12/01 v3.14 biblatex localization (PK/MW) -Package biblatex Info: Trying to load language 'german'... -Package biblatex Info: ... file 'german.lbx' found. - -(/usr/share/texlive/texmf-dist/tex/latex/biblatex/lbx/german.lbx -File: german.lbx 2019/12/01 v3.14 biblatex localization (PK/MW) -) -Package biblatex Info: Trying to load language 'german'... -Package biblatex Info: ... file 'german.lbx' found. - -(/usr/share/texlive/texmf-dist/tex/latex/biblatex/lbx/german.lbx -File: german.lbx 2019/12/01 v3.14 biblatex localization (PK/MW) -)) -Package biblatex Info: XeTeX detected. -(biblatex) Assuming input encoding 'utf8'. -Package biblatex Info: Data encoding 'utf8' specified. -(biblatex) No need to reencode data. -\openout3 = `main.bcf'. - -Package biblatex Info: Trying to load bibliographic data... -Package biblatex Info: ... file 'main.bbl' found. - -(/home/florian/Dokumente/Programmieren/IntelliJIDEAProjects/LaTex_Hausarbeit_Te -mplate/out/main.bbl) -Package biblatex Info: Reference section=0 on input line 33. -Package biblatex Info: Reference segment=0 on input line 33. -\openout2 = `includes/cover.aux'. - - (./includes/cover.tex -File: images/dhbw-stuttgart.png Graphic file (type bmp) - -File: images/TSY-transparent.png Graphic file (type bmp) - - [1 - - - - - - - - - - - - -]) -\openout2 = `includes/statementofauthorship.aux'. - - -(./includes/statementofauthorship.tex -LaTeX Font Info: Calculating math sizes for size <13> on input line 12. -) [2 - - - - - -] -\openout2 = `includes/abstract.aux'. - - (./includes/abstract.tex [3 - - - - - - -]) -(/home/florian/Dokumente/Programmieren/IntelliJIDEAProjects/LaTex_Hausarbeit_Te -mplate/out/main.toc) -\tf@toc=\write5 -\openout5 = `main.toc'. - - [4 - - - - -] - -Package glossaries Warning: Empty glossary for \printnoidxglossary[type={acrony -m}]. Rerun may be required (or you may have forgotten to use commands like \gls -) on input line 57. - - -(/home/florian/Dokumente/Programmieren/IntelliJIDEAProjects/LaTex_Hausarbeit_Te -mplate/out/main.lof) -\tf@lof=\write6 -\openout6 = `main.lof'. - - [5 - - - - - -] - -Class scrreprt Warning: \float@listhead detected! -(scrreprt) Implementation of \float@listhead became -(scrreprt) deprecated in KOMA-Script v3.01 2008/11/14 and -(scrreprt) has been replaced by several more flexible -(scrreprt) features of package `tocbasic`. -(scrreprt) Maybe implementation of \float@listhead will -(scrreprt) be removed from KOMA-Script soon. -(scrreprt) Loading of package `scrhack' may help to -(scrreprt) avoid this warning, if you are using a -(scrreprt) a package that still implements the -(scrreprt) deprecated \float@listhead interface on input line 68. - - -chapter without number - -Class scrreprt Warning: \float@addtolists detected! -(scrreprt) Implementation of \float@addtolist became -(scrreprt) deprecated in KOMA-Script v3.01 2008/11/14 and -(scrreprt) has been replaced by several more flexible -(scrreprt) features of package `tocbasic`. -(scrreprt) Since Version 3.12 support for deprecated -(scrreprt) \float@addtolist interface has been -(scrreprt) restricted to only some of the KOMA-Script -(scrreprt) features and been removed from others. -(scrreprt) Loading of package `scrhack' may help to -(scrreprt) avoid this warning, if you are using a -(scrreprt) a package that still implements the -(scrreprt) deprecated \float@addtolist interface . - - -(/home/florian/Dokumente/Programmieren/IntelliJIDEAProjects/LaTex_Hausarbeit_Te -mplate/out/main.lol) -\tf@lol=\write7 -\openout7 = `main.lol'. - - [6 - - - -] (./content/01-00-chapter.tex -chapter 1. -) [7 - - - -] -\openout2 = `content/02-00-chapter.aux'. - - (./content/02-00-chapter.tex -chapter 2. -) [8 - - -] -\openout2 = `content/03-00-chapter.aux'. - - (./content/03-00-chapter.tex -chapter 3. -) [9 - - - -] - -LaTeX Warning: Empty bibliography on input line 79. - -Package atveryend Info: Empty hook `BeforeClearDocument' on input line 80. -Package atveryend Info: Empty hook `AfterLastShipout' on input line 80. - -(/home/florian/Dokumente/Programmieren/IntelliJIDEAProjects/LaTex_Hausarbeit_Te -mplate/out/main.aux -(/home/florian/Dokumente/Programmieren/IntelliJIDEAProjects/LaTex_Hausarbeit_Te -mplate/out/includes/cover.aux) -(/home/florian/Dokumente/Programmieren/IntelliJIDEAProjects/LaTex_Hausarbeit_Te -mplate/out/includes/statementofauthorship.aux) -(/home/florian/Dokumente/Programmieren/IntelliJIDEAProjects/LaTex_Hausarbeit_Te -mplate/out/includes/abstract.aux) -(/home/florian/Dokumente/Programmieren/IntelliJIDEAProjects/LaTex_Hausarbeit_Te -mplate/out/content/02-00-chapter.aux) -(/home/florian/Dokumente/Programmieren/IntelliJIDEAProjects/LaTex_Hausarbeit_Te -mplate/out/content/03-00-chapter.aux)) -Package atveryend Info: Empty hook `AtVeryEndDocument' on input line 80. -Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 80. -Package rerunfilecheck Info: File `main.out' has not changed. -(rerunfilecheck) Checksum: . -Package logreq Info: Writing requests to 'main.run.xml'. -\openout1 = `main.run.xml'. - - ) -Here is how much of TeX's memory you used: - 33133 strings out of 479819 - 676172 string characters out of 5895846 - 1598005 words of memory out of 5000000 - 49744 multiletter control sequences out of 15000+600000 - 540695 words of font info for 71 fonts, out of 8000000 for 9000 - 1350 hyphenation exceptions out of 8191 - 57i,19n,94p,10099b,3887s stack positions out of 5000i,500n,10000p,200000b,80000s - -Output written on /home/florian/Dokumente/Programmieren/IntelliJIDEAProjects/La -Tex_Hausarbeit_Template/out/main.pdf (9 pages). diff --git a/out/main.lol b/out/main.lol deleted file mode 100644 index 617f54c..0000000 --- a/out/main.lol +++ /dev/null @@ -1,8 +0,0 @@ -\defcounter {refsection}{0}\relax -\addvspace {10\p@ } -\defcounter {refsection}{0}\relax -\addvspace {10\p@ } -\defcounter {refsection}{0}\relax -\addvspace {10\p@ } -\defcounter {refsection}{0}\relax -\addvspace {10\p@ } diff --git a/out/main.out b/out/main.out deleted file mode 100644 index e69de29..0000000 diff --git a/out/main.pdf b/out/main.pdf deleted file mode 100644 index 4a003fe..0000000 Binary files a/out/main.pdf and /dev/null differ diff --git a/out/main.run.xml b/out/main.run.xml deleted file mode 100644 index f1b9aa5..0000000 --- a/out/main.run.xml +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - -]> - - - latex - - main.bcf - - - main.bbl - - - blx-dm.def - blx-unicode.def - blx-compat.def - biblatex.def - standard.bbx - numeric.bbx - numeric-comp.bbx - numeric-comp.cbx - biblatex.cfg - german.lbx - ngerman.lbx - - - - biber - - biber - main - - - main.bcf - - - main.bbl - - - main.bbl - - - main.bcf - - - main.bib - - - diff --git a/out/main.synctex.gz b/out/main.synctex.gz deleted file mode 100644 index b1785db..0000000 Binary files a/out/main.synctex.gz and /dev/null differ diff --git a/out/main.toc b/out/main.toc deleted file mode 100644 index afe7451..0000000 --- a/out/main.toc +++ /dev/null @@ -1,12 +0,0 @@ -\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax -\babel@toc {ngerman}{} -\defcounter {refsection}{0}\relax -\contentsline {chapter}{\nonumberline Abbildungsverzeichnis}{5}{chapter*.3}% -\defcounter {refsection}{0}\relax -\contentsline {chapter}{\nonumberline Quellcodeverzeichnis}{6}{chapter*.4}% -\defcounter {refsection}{0}\relax -\contentsline {chapter}{\numberline {1}Einleitung}{7}{chapter.1}% -\defcounter {refsection}{0}\relax -\contentsline {chapter}{\numberline {2}Tätigkeitsschwerpunkt}{8}{chapter.2}% -\defcounter {refsection}{0}\relax -\contentsline {chapter}{\numberline {3}Ausblick in die Zukunft}{9}{chapter.3}%