Moved software and source code design to appendices

Additionally, the entire LaTeX setup was adapted for this use case.

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
2019-08-14 16:40:38 +02:00
parent e5662ed48d
commit 15aabfa9ac
5 changed files with 75 additions and 54 deletions

View File

@ -33,13 +33,31 @@
% specify bib resource
\addbibresource{ma.bib}
\makeatletter
\g@addto@macro\appendix{%
\renewcommand*{\chapterformat}{%
{\appendixname\nobreakspace\thechapter\autodot\enskip}%
}
\renewcommand*{\chaptermarkformat}{%
{}%
}
}
\makeatother
% begin document
\begin{document}
% invoke start command(s) from masterthesis package
\frontmatter
\start
\mainmatter
\input{body.tex}
\references
\begin{appendices}
\appendix
\input{appendix.tex}
\end{appendices}
% invoke finish command(s) from masterthesis package
\backmatter
\finish
\end{document}