diff --git a/body.tex b/body.tex new file mode 100644 index 0000000..bf53c08 --- /dev/null +++ b/body.tex @@ -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} diff --git a/thesis.tex b/thesis.tex new file mode 100644 index 0000000..bfec1b7 --- /dev/null +++ b/thesis.tex @@ -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}