texmaster/master.tex

87 lines
1.6 KiB
TeX
Raw Normal View History

2019-06-25 12:59:42 +02:00
% !TeX spellcheck = en_GB
\documentclass[
paper=a4, % paper format
oneside, % oneside or twoside
%draft, % activate draft mode to see bad boxes
abstract=false, % toogle abstract
12pt, % font size
bibliography=totoc, % show bibliography in toc
listof=totoc, % show list of tables and figures in toc
fleqn, % no idea..
titlepage=false % toggle titlepage
]{scrartcl}
% meta
2019-06-25 14:54:56 +02:00
% note: after changing the language you need to run the compilation twice because the first time will stop with an error
\newcommand{\metalanguage}{ngerman} % german language
%\newcommand{\metalanguage}{english} % english language
2019-06-25 12:59:42 +02:00
\newcommand{\metaauthor}{Moritz Münch}
\newcommand{\metatitle}{}
\newcommand{\metasubject}{}
\newcommand{\metakeywords}{}
% fonts & language
\input{texmaster/fonts_language}
% graphics
\input{texmaster/graphics}
% tables
\input{texmaster/tables}
% si units
\input{texmaster/si_units}
% abbreviations and acronyms
\input{texmaster/acronyms_abbreviations}
% references
\input{texmaster/references}
% misc
\input{texmaster/misc}
\begin{document}
% print titlepage
\include{texmaster/titlepage}
% print abstract
\include{texmaster/abstract}
% print acknowledgements
\input{texmaster/acknowledgements}
% print toc
\cleardoublepage
\tableofcontents
% print acronyms and abbreviations
\cleardoublepage
\input{texmaster/nomenclature}
% main document
\cleardoublepage
%\section{}
%\label{}
%
%\subsection{}
%\label{}
%
%\paragraph{}
%\label{}
% print figures
\cleardoublepage
\listoffigures
% print tables
\cleardoublepage
\listoftables
% print references
\cleardoublepage
\printbibliography
% print appendix
\cleardoublepage
\appendix
\end{document}