% Settings
\documentclass[11pt, a4paper, svgnames]{book}
% Document (thesis/report) and author (student, supervisors) information
\title{Title}
\author{Author(s)' Name(s)}
\def\stdnum{Student ID} % Matrikel nummer (if applicable)
\def\doctype{2} % Report=0, BSc=1, MSc=2, PhD=3, Hab=4
% Add 10 for German versions (Diplomarbeit=12)
\def\program{Field of Study} % For reports leave this field empty
\def\prognum{(Study Code)} % For reports leave this field empty
\def\supervisor{Supervisor's Name} % Leave empty if not needed for you report
\def\cosupervisor{Co-Supervisors's Name}% Leave empty if you don't have one
\def\submissionmonth{June}
\def\submissionyear{2020}
% Feel free to edit acronyms files and other files in the text folder as per your need, however, refrain from changing the setup files (files in the setup folder). For packages also, instead of editing, consider adding new packages elsewhere (e.g., in a new file).
\input{setup/packages} % These packages must be defined before setup
\input{setup/setup} % Please avoid editing
\input{text/acronyms} % Please edit as necessary
%----------------------------------------------------------------------------
%----------------------------------------------------------------------------
%% Document body % Edit only the preamble and the main text
% *** Ideally you change only the content of the files in the text folder ****
\begin{document}
\input{setup/titlepage} % Generated automatically, do not change.
\input{text/preamble} % Please edit as necessary
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Main Text %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Insert the main body of your document here. For longer documents we suggest using separate files and including them here with \input{<file>} command.
\input{text/chapter1}
%----------------------------------------------------------------------------
% List of References
\newpage
\addcontentsline{toc}{chapter}{\bibname}
\bibliographystyle{IEEEtran}
\bibliography{text/references} % Insert your bib entries
%----------------------------------------------------------------------------
% Appendices (Remove the following lines if you don't have an appendix)
\appendix
\renewcommand{\thechapter}{\Alph{chapter}}
\input{text/appendix}
%----------------------------------------------------------------------------
\end{document}