\documentclass[10pt,a4paper,oneside,fleqn,english]{memoir} % load class memoir with options:
% 10pt = fontsize 10
% a4paper = paper size A4
% oneside = same side margins on even and odd pages, intented for one side printing
% fleqn = flush math equations to the left, instead of centered on page
% english = document language: used in package babel & cleveref & nomenclature
% when writing in Dutch, use: dutch
%
% other options: final, draft, ms, twoside, openright, onecolumn, twocolumn, ...
% more info at ctan.org/pkg/memoir
% This first part is called the PREAMBLE, here:
% - document settings are made (margins, font, line spacing, ...)
% - packages are loaded, to extend the functionality of LaTeX and to provide additional features
\usepackage{beamerarticle} % to ignore commands from class beamer (a class to make slides) while using class memoir. Beamer is used in mainSlides.tex
\input{styles/myStyleFiles} % load my style files
%\includeonly{filename1} % to recompile this file only, to reduce compilation time. Before using \includeonly, compile your ENTIRE project, so without activating \includeonly. Otherwise, cross-references to non-included files will not be established
\input{extra/titleInfoVUB} % define VUB title page content; comment out if not used
\input{extra/titleInfoBRUFACE} % define BRUFACE title page content; comment out if not used
% End of the PREAMBLE
% The second part below is called the DOCUMENT. It contains the source text.
% LaTeX will compile this source text into a typeset document, using the layout rules defined above
\begin{document} % here content is defined in plain text in a structured way
\maketitleVUB % create VUB title page; comment out if not used
\maketitleBRUFACE % create BRUFACE title page; comment out if not used
\frontmatter % roman page numbers & chapters not numbered
\include{extra/acknowledgements} % to thank people
\include{extra/abstract} % abstract in English, Dutch and French
\include{extra/disclosureAI} % disclosure of the use of AI
\tableofcontents\newpage % table of contents
\listoffigures\newpage % list of figures
\listoftables\newpage % list of tables
\lstlistoflistings % list of source code listings
\include{extra/nomenclature} % nomenclature
\mainmatter % arabic page numbers & chapters numbered
\include{chapters/introduction}
\include{chapters/literature}
\include{chapters/materialsmethods}
\include{chapters/results}
\include{chapters/discussion}
\include{chapters/conclusions}
\include{chapters/futurework}
\appendix % arabic page numbers & chapters lettered
\include{appendices/about} % about this template
\include{appendices/formatting} % formatting guidelines
\include{appendices/usefulPackages} % useful LaTeX packages
\include{appendices/usefulCommands} % useful LaTeX commands
\include{appendices/drawing} % examples of plots and drawings
\include{appendices/mathsymbols} % math symbols
\include{appendices/greeksymbols} % greek symbols
\include{appendices/isa} % example of a table in appendix
\backmatter % arabic page numbers & chapters not numbered
%\nocite{*} % include all entries in bibliography
\printbibliography\label{sec:bibliography} % bibliography
\listoftodos % list of todos
\end{document}
% Here you can put whatever you want, for instance a to do list.
% It will never be seen and compiled by LaTeX.