%load preamble with latex class and packages
\input{00-preamble}
\begin{document}
%global settings for source code representation using listings
\lstset{basicstyle=\scriptsize\ttfamily,language={[LaTeX]TeX}}
\pagenumbering{roman}
%titlepages
\input{00-title}
\cleardoubleemptypage
%table of contents
%Only chapters und sections are mentioned. Subsections are not shown autoamtically. If needed increase number of option tocdepth.
\setcounter{tocdepth}{1}
\tableofcontents
\cleardoubleemptypage
%reset pagenumbering and switch to arabic
\pagestyle{headings}
\pagenumbering{arabic}
\setcounter{page}{1}
%begin of chapters
\input{01-introduction}
\cleardoublepage
\input{02-latex}
%input additional chapters here
%\cleardoublepage
%\input{03-new-chapter}
%literature
\cleardoublepage
\printbibliography[heading=bibintoc]
%image credits
\cleardoublepage
\input{97-image-credits}
%nomenclature
\cleardoublepage
\input{98-nomenclature}
%list of figures
\cleardoublepage
\addcontentsline{toc}{chapter}{\listfigurename}
\listoffigures
%list of tables
\cleardoublepage
\addcontentsline{toc}{chapter}{\listtablename}
\listoftables
%appendix
\cleardoublepage
\appendix
\input{99-appendix}
\end{document}