Added thesis files

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
2019-07-28 14:19:31 +02:00
parent a9f79818fe
commit 652c860404
2 changed files with 649 additions and 0 deletions

45
thesis.tex Normal file
View File

@ -0,0 +1,45 @@
% main thesis file
% first: let's determine the class we want to use
\documentclass[12pt]{masterthesis} % we use our custom masterthesis class
\KOMAoption{draft}{false} % set for "draft" mode, disable later
% define "variables"
\title{Novelty detection through auto-encoding for object detection in open set conditions}
\author{Jim Martens}
\date{\today}
\subject{} % value for pdfsubject
\newcommand{\keywords}{CV} % value for pdfkeywords
\newcommand{\studiengang}{\IfLanguageName{british}{Computer Science M.Sc.}{Master Informatik}}
\newcommand{\faculty}{\IfLanguageName{british}{MIN Faculty}{MIN-Fakult\"{a}t}}
\newcommand{\department}{\IfLanguageName{british}{Department of Computer Science}{Fachbereich Informatik}}
% define here to prevent building errors
\newcommand{\professor}{}
\newcommand{\matrikelnummer}{}
\newcommand{\firstReviewer}{}
\newcommand{\secondReviewer}{}
% load protected variables
\IfFileExists{./private/variables.tex}{%
\input{./private/variables.tex}
}{}
% use custom package to prevent spamming the preamble
\usepackage[licence]{masterthesis}
% specify image location
\graphicspath{{./images/}{./private/images/}}
% specify bib resource
\addbibresource{ma.bib}
% begin document
\begin{document}
% invoke start command(s) from masterthesis package
\start
\input{body_expose.tex}
% invoke finish command(s) from masterthesis package
\finish
\end{document}