You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
918 B
40 lines
918 B
\documentclass[12pt]{report}
|
|
|
|
% Custom packages
|
|
\input{misc/packages}
|
|
|
|
% Sets up the bib files
|
|
\input{bibliography/bib-setup}
|
|
|
|
% Paper size and margins
|
|
\geometry{a4paper, top=2.5cm, bottom=2.5cm, left=2.2cm,right=2.2cm}
|
|
|
|
% Make title page
|
|
\input{misc/title-page}
|
|
|
|
% Avoid reset of footnote counter through chapters
|
|
\counterwithout{footnote}{chapter}
|
|
|
|
\begin{document}
|
|
|
|
% Makes the cover page
|
|
\maketitle
|
|
|
|
\input{chapters/0.preamble/0.0.preamble}
|
|
|
|
% start of thesis body
|
|
% ---------------------------
|
|
|
|
\input{chapters/1.introduction/1.0.introduction}
|
|
\input{chapters/2.theoretical-background/2.0.theoretical-background}
|
|
\input{chapters/3.application-design/3.0.application-design}
|
|
\input{chapters/4.application-implementation/4.0.application-implementation}
|
|
\input{chapters/5.conclusions/5.0.conclusions}
|
|
|
|
% end of thesis body
|
|
% --------------------------
|
|
|
|
% Prints out the references
|
|
\printbibliography
|
|
|
|
\end{document}
|
|
|