Clean up template
This commit is contained in:
114
src/index.tex
Normal file
114
src/index.tex
Normal file
@@ -0,0 +1,114 @@
|
||||
\documentclass[11pt,english,a4paper,chapterprefix]{scrartcl}
|
||||
\usepackage[small,bf,hang]{caption}
|
||||
\usepackage[english]{babel}
|
||||
\usepackage{wrapfig}
|
||||
\usepackage{xcolor}
|
||||
\usepackage{graphicx}
|
||||
\usepackage{amsmath}
|
||||
\usepackage{amssymb}
|
||||
\usepackage{setspace}
|
||||
\usepackage{tocloft}
|
||||
\usepackage{listing}
|
||||
\usepackage{multirow}
|
||||
\usepackage{fancyhdr}
|
||||
\usepackage{subfig}
|
||||
\usepackage{url}
|
||||
\usepackage{hyperref}
|
||||
\usepackage{acro}
|
||||
\usepackage{lipsum}
|
||||
|
||||
% Configurations
|
||||
\setlength\textheight{24cm}
|
||||
\setkomafont{paragraph}{\footnotesize}
|
||||
\numberwithin{table}{section}
|
||||
\numberwithin{listing}{section}
|
||||
\numberwithin{equation}{section}
|
||||
\numberwithin{figure}{section}
|
||||
|
||||
% Penalties
|
||||
\clubpenalty = 10000
|
||||
\widowpenalty = 10000
|
||||
\displaywidowpenalty = 10000
|
||||
\parindent 0pt
|
||||
|
||||
\acsetup{make-links=true}
|
||||
\input{acronyms}
|
||||
|
||||
% --- Preamble End ---
|
||||
\begin{document}
|
||||
|
||||
\pagenumbering{Roman}
|
||||
|
||||
% Title page
|
||||
\include{titlepage}
|
||||
\include{statement}
|
||||
|
||||
% Table of contents
|
||||
\tableofcontents
|
||||
\newpage
|
||||
|
||||
\pagestyle{fancy}
|
||||
\pagenumbering{arabic}
|
||||
\setcounter{page}{1}
|
||||
|
||||
% Chapters
|
||||
\include{chapters/introduction}
|
||||
|
||||
% Appendix
|
||||
\appendix
|
||||
\include{appendix}
|
||||
|
||||
% Listings and References
|
||||
\pagestyle{plain}
|
||||
|
||||
% List of Figures
|
||||
\vspace{-20pt}
|
||||
\begingroup
|
||||
\phantomsection
|
||||
\addcontentsline{toc}{section}{List of Figures}
|
||||
\setlength{\cftparskip}{10pt}
|
||||
\listoffigures
|
||||
\endgroup
|
||||
\newpage
|
||||
\clearpage
|
||||
|
||||
% List of Tables
|
||||
\begingroup
|
||||
\phantomsection
|
||||
\addcontentsline{toc}{section}{List of Tables}
|
||||
\setlength{\cftparskip}{10pt}
|
||||
\listoftables
|
||||
\endgroup
|
||||
\newpage
|
||||
\clearpage
|
||||
|
||||
% %List of Listings
|
||||
% %\renewcommand{\lstlistlistingname}{Verzeichnis der Quellcodes}
|
||||
% \begingroup
|
||||
% \phantomsection
|
||||
% \addcontentsline{toc}{section}{List of Listings}
|
||||
% \setlength{\itemsep}{20pt}
|
||||
% \setlength{\parskip}{10pt}
|
||||
% \renewcommand{\listlistingname}{List of Listings}
|
||||
% \listoflistings
|
||||
% \endgroup
|
||||
% \newpage
|
||||
% \clearpage
|
||||
|
||||
% List of Abbreviations
|
||||
\begingroup
|
||||
\phantomsection
|
||||
\addcontentsline{toc}{section}{List of Abbreviations}
|
||||
\printacronyms[name=List of Abbreviations]
|
||||
% \setlength{\nomitemsep}{8pt}
|
||||
\endgroup
|
||||
\newpage
|
||||
\clearpage
|
||||
|
||||
% References
|
||||
\phantomsection
|
||||
\addcontentsline{toc}{section}{References}
|
||||
\bibliographystyle{unsrt}
|
||||
\bibliography{doc}
|
||||
|
||||
\end{document}
|
||||
Reference in New Issue
Block a user