forked from TH_General/Template_Summary
84 lines
1.8 KiB
TeX
84 lines
1.8 KiB
TeX
\documentclass[ngerman,regno,a4paper,11pt,oneside,hidelinks]{scrbook}
|
|
%page format
|
|
\usepackage[
|
|
a4paper,
|
|
top=35mm,right=20mm,bottom=30mm,left=20mm,
|
|
headheight=25mm
|
|
]{geometry}
|
|
\setcounter{secnumdepth}{3}
|
|
|
|
\input{Packages.tex}
|
|
\input{Style.tex}
|
|
\input{Makros.tex}
|
|
|
|
\def \AUTHOR{Example Author}
|
|
\def \AUTHOREMAIL{example.author@example.com}
|
|
\def \AUTHORSTUDENTID{123456}
|
|
\def \MODULE{Example Module}
|
|
\def \MODULECOMPACT{EM}
|
|
\def \DATE{\today}
|
|
|
|
% include glossary entries, acronyms and nomenclature entries
|
|
\input{Glossary.tex}
|
|
\input{Acronyms.tex}
|
|
\input{Nomenclature.tex}
|
|
\makeglossaries
|
|
|
|
\begin{document}
|
|
% {{{ Front Matter%
|
|
\input{TitlePage.tex}
|
|
\clearpage
|
|
|
|
\pagenumbering{Roman}
|
|
|
|
%table of contents
|
|
\tableofcontents
|
|
|
|
%abbreviations
|
|
\printglossary[type=\acronymtype, title=Abkürzungsverzeichnis, nonumberlist]
|
|
\clearpage
|
|
|
|
%nomenclature
|
|
\printglossary[type=nomenclature, nonumberlist, style=customnomenclature]
|
|
\clearpage
|
|
% }}} %
|
|
|
|
% {{{ Body%
|
|
\pagenumbering{arabic}
|
|
|
|
\part{Example Part}
|
|
\label{part:Example Part}
|
|
\include{chapters/Example_Part/Example_Chapter.tex}
|
|
|
|
% }}} %
|
|
|
|
% {{{ Back Matter%
|
|
\pagenumbering{roman}
|
|
\part*{Anhang}
|
|
\label{part:Anhang}
|
|
|
|
%list of figures
|
|
\addcontentsline{toc}{chapter}{\listfigurename}
|
|
\listoffigures
|
|
|
|
%list of tables
|
|
\addcontentsline{toc}{chapter}{\listtablename}
|
|
\listoftables
|
|
|
|
%glossary
|
|
\printglossary[nonumberlist]
|
|
\newpage
|
|
|
|
%bibliography
|
|
\phantomsection
|
|
\addcontentsline{toc}{chapter}{Literatur}
|
|
\bibliographystyle{IEEEtran-de}
|
|
\bibliography{Bibliography.bib}
|
|
|
|
%appendix
|
|
\pagenumbering{arabic}
|
|
\renewcommand*{\thepage}{A-\arabic{page}}
|
|
\include{Appendix.tex}
|
|
% }}} %
|
|
\end{document}
|