%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ZHAW REPORT CLASS
% Main Document
% 
% Authors:
% Martin Oswald
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%----------------------------------------
%   DOCUMENT SPECIFICATION
%----------------------------------------
\documentclass[
    12pt,           % font size
    peper=a4,       % paper size
    oneside,        % binding layout: oneside, twoside
    DIV=14,         % influence typearea: 0 - 16
    onecolumn,      % column layout: twocolumn, onecolumn
    % draft         % draft mode for editing
]{zhawreport/zhawreport}
%----------------------------------------
%   REPORT INFORMATION
%----------------------------------------
\title{Report Title}
\author{Martin Oswald}
\supervisors{Supervisor}
\submittedon{date}
\course{Course}
\studyprogram{Study program}
\department{School of Engineering}
%----------------------------------------
% PREAMBLE: PACKAGES AND CONFIGURATIONS
%----------------------------------------
\input{preamble}
%----------------------------------------
%   TITLEPAGE
%----------------------------------------
\begin{document}
\maketitle
%----------------------------------------
%   LIST OF CONTENTS/FIGURES/TABLES PAGES
%----------------------------------------
% \tableofcontents
% \clearpage
% \listoffigures
% \clearpage
% \listoftables
% \clearpage
%----------------------------------------
%   MAIN CONTENT
%----------------------------------------
\input{content/introduction}
\input{content/section_1}
\input{content/section_2}
%----------------------------------------
%   APPENDICES
%----------------------------------------
\appendix
% \input{appendicies/appendixA}
%----------------------------------------
%   BIBLIOGRAPHY
%----------------------------------------
\printbibliography[heading=bibintoc]
\end{document}