% Author - Jon Arnt Kårstad, NTNU IMT
\documentclass{article}
% Importing settings from our file "setup.sty"
\usepackage{setup}
% Beginning of document
\begin{document}
% Inserting title page
\import{./Sections/}{title}
% Defining front matter settings (Norsk: innstillinger for forord m.m.)
\frontmatter
% Inserting table of contents
\tableofcontents
% Inserting list of figures & list of tables
\listoffigures
\listoftables
% Defining main matter settings (Norsk: innstillinger for hoveddelen av teksten)
\mainmatter
% Introduction explaining this LaTeX-template
\import{./Sections/}{Introduction}
% Printing bibliography
\newpage
\printbibliography[heading = bibintoc] % 'bibintoc' inserts our bibliography into the table of contents
% End of document
\end{document}