Skip to content
Snippets Groups Projects
main.tex 2.38 KiB
% !TeX root = main.tex
\documentclass[
    a4paper,        % a4paper/a5paper
    11pt,           % 11pt for A4, 8pt for A5
    en,             % Language [DE|EN]
    usefiramath,    % use fira math for equations
    sans,           % Font without serif (like Arial),
    % twoside,
    openright
    ]{format/WZLTemplate}


% Set up the document

% Titlepage
\title{Awesome Title}
\newcommand\titlegerman{Rahmenwerk zur Unterstützung des Forschungsdatenmanagements in der projektbasierten Forschung der deutschen Ingenieurwissenschaften}
\author{Tobias Hamann, M.Sc.}
\date{\today} % TODO use \formatdate{dd}{mm}{yyyy} instead of \today

% Define the thesis type here (options: PA, BA, MA, Dissertation)
\newcommand{\thesistype}{PA} % Change this to BA, MA, or Dissertation as needed
\newcommand\studentid{123456}
\newcommand\institute{Chair of Intelligence in Quality Sensing | WZL | RWTH Aachen University}
\newcommand\institutegerman{Lehrstuhl für Informations-, Qualitäts- und Sensorsysteme in der Produktion | WZL | RWTH Aachen}
\newcommand\supervisor{Internal Supervisor M. Sc.}
\newcommand\firstexaminer{Univ.-Prof. Dr.-Ing. Robert Schmitt}
\newcommand\secondexaminer{} % add if necessary


% Set up Bibliography
\bibliography{lit/References.bib}

% Set up Graphics
\graphicspath{{./03_figures/}}

%% Import Custom Packages
\input{Usercustomised_Content/custom_packages}

% Begin of the document
\begin{document}

%% Define own commands
\include{Usercustomised_Content/functions}

%% Set up keyphrases
\input{Usercustomised_Content/keyphrases}

%% Set up definitions
%\input{definitions}

% To avoid bugs with page numbering
% \hypersetup{pageanchor=false}

% To avoid bugs with page numbering
% \hypersetup{pageanchor=true}


% -- Additional documents -- 

% Titlepage
\include{format/titlepage}

% -- FRONTMATTER -- 
\include{frontmatter}



% -- CHAPTERS -- 
%Here you can include your chapters, as shown
\include{01_chapters/ch1-intro}
\renewcommand{\chaptercolor}{RWTHPetrol100}
\include{01_chapters/ch2-theory}
%
% Proposed Chapters
%\include{01_chapters/Einleitung} 
%\include{01_chapters/Stand_der_Technik}
%\include{01_chapters/Versuchsplanung}
%\include{01_chapters/Versuchsdurchführung}
%\include{01_chapters/Diskussion_der_Ergebnisse}
%\include{01_chapters/Zusammenfassung_und_Ausblick}

% -- LITERATURE -- 
%\printbibliography
\include{format/literature}

% -- APPENDIX --
%\include{appendix}

\end{document}