\documentclass[10pt,a4paper,oneside,fleqn]{memoir} % load class memoir: en.wikibooks.org/wiki/LaTeX/Document_Structure
% This first part is called the PREAMBLE, here:
% - document settings are made (margins, font, line spacing, ...)
% - packages are loaded, that enhance the capabilities of LaTeX
\usepackage{beamerarticle} % to ignore beamer instructions in class memoir
\input{styles/myStyleFiles} % load style files
% \includeonly{filename1,...} % recompile only these files, to reduce compilation time. But always start by compiling your entire project, so without using \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}
\include{extra/abstract}
\tableofcontents\newpage
\listoffigures\newpage
\listoftables\newpage
\lstlistoflistings % list of source code listings
\include{extra/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} % useful LaTeX packages
\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} % often-used math-symbols
\include{appendices/greeksymbols} % Greek symbols
\include{appendices/isa} % example of a table in appendix
\backmatter % arabic page numbers & chapters not numbered
%\nocite{*} % uncomment to include all bib file entries in bibliography
\printbibliography\label{sec:bibliography}
\listoftodos
\end{document}
% Here you can put whatever you want, for instance a to do list. It will never be seen and compiled by LaTeX.