Added main thesis file and body file

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
Jim Martens 2019-01-03 16:32:17 +01:00
parent 916e75980a
commit 585d8566ca
2 changed files with 49 additions and 0 deletions

13
body.tex Normal file
View File

@ -0,0 +1,13 @@
% body thesis file that contains the actual content
\chapter{Introduction}
\textcolor{uhhRed}{Hallo}
\chapter{Conclusion}
% test references
\cite{Wu2019}
\cite{Gal2016}
\cite{Ilg2018}
\cite{Geifman2018}

36
thesis.tex Normal file
View File

@ -0,0 +1,36 @@
% main thesis file
% first: let's determine the class we want to use
\documentclass[12pt]{masterthesis} % we use our custom masterthesis class
\KOMAoption{draft}{true} % set for "draft" mode, disable later
% define "variables"
\title{Test Thesis}
\author{Jim Martens}
\date{03. Januar 2019}
\subject{} % value for pdfsubject
\newcommand{\keywords}{} % value for pdfkeywords
\newcommand{\studiengang}{Master Informatik}
% use custom package to prevent spamming the preamble
\usepackage[licence, library]{masterthesis}
% specify image location
\graphicspath{{./images/}{./private/images/}}
% specify bib resource
\addbibresource{ma.bib}
\IfFileExists{./private/definitions.tex}{%
\input{./private/definitions.tex}}{}
% begin document
\begin{document}
% invoke start command(s) from masterthesis package
\start
\input{body.tex}
% invoke finish command(s) from masterthesis package
\finish
\end{document}