Added main thesis file and body file
Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
13
body.tex
Normal file
13
body.tex
Normal 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
36
thesis.tex
Normal 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}
|
||||||
Reference in New Issue
Block a user