forked from TH_General/Template_Summary
37 lines
710 B
TeX
37 lines
710 B
TeX
\documentclass[ngerman,regno,a4paper,12pt,oneside]{scrbook}
|
|
%page format
|
|
\usepackage[
|
|
a4paper,
|
|
top=35mm,right=20mm,bottom=30mm,left=20mm,
|
|
headheight=25mm
|
|
]{geometry}
|
|
|
|
\input{Packages.tex}
|
|
\input{Style.tex}
|
|
|
|
\def \AUTHOR{Example Author}
|
|
\def \AUTHOREMAIL{author@example.com}
|
|
\def \AUTHORSTUDENTID{12345678}
|
|
\def \MODULE{ExampleModule}
|
|
\def \MODULECOMPACT{EM}
|
|
\def \DATE{\today}
|
|
|
|
\input{Glossary.tex}
|
|
|
|
\begin{document}
|
|
\input{TitlePage.tex}
|
|
\clearpage
|
|
|
|
\input{Preface.tex}
|
|
\clearpage
|
|
|
|
% {{{ Main Content%
|
|
\pagenumbering{arabic}
|
|
\part{Example Part}
|
|
\input{chapters/ExamplePart/ExampleChapter.tex}
|
|
\clearpage
|
|
% }}} %
|
|
|
|
\input{Appendix.tex}
|
|
\end{document}
|