\documentclass[master=eelt,masteroption=ec]{kulemt}
\setup{
title={The best master's thesis ever},
author={First Author\and Second Author},
promotor={Prof.\,dr.\,ir.\ Knows Better},
assessor={Ir.\,Kn. Owsmuch\and K. Nowsrest},
assistant={Ir.\ An~Assistent \and A.~Friend}}
% Remove the "%" on the next line for generating the cover page
%\setup{coverpageonly}
% Remove the "%" before the next "\setup" to generate only the first pages
% (e.g., if you are a Word user).
%\setup{frontpagesonly}
% If you want to include other LaTeX packages, do it here.
% GenAI transparency statement (optional)
% KU Leuven publishes a GenAI transparency statement.
% To use it, remove (/add) the "%" at the start of the next line:
\usepackage{longtable}\usepackage{array}\newcommand\usetransparencystatement{}
% Finally the hyperref package is used for pdf files.
% This can be commented out for printed versions.
\usepackage[pdfusetitle,colorlinks,plainpages=false]{hyperref}
%%%%%%%
% The lipsum package is used to generate random text.
% You never need this in a real master's thesis text!
\IfFileExists{lipsum.sty}%
{\usepackage{lipsum}\SetLipsumDefault{11-13}}%
{\newcommand{\lipsum}[1][11-13]{\par And some text: lipsum ##1.\par}}
%%%%%%%
%\includeonly{chapter-n}
\begin{document}
\begin{preface}
I would like to thank everybody who kept me busy the last year,
especially my promoter and my assistants. I would also like to thank the
jury for reading the text. My sincere gratitude also goes to my wive and
the rest of my family.
\end{preface}
\tableofcontents*
\begin{abstract}
The \texttt{abstract} environment contains a more extensive overview of
the work. But it should be limited to one page.
\lipsum[1]
\end{abstract}
% A list of figures and tables is optional
%\listoffigures
%\listoftables
% If you only have a few figures and tables you can use the following instead
\listoffiguresandtables
% The list of symbols is also optional.
% This list must be created manually, e.g., as follows:
\chapter{List of Abbreviations and Symbols}
\section*{Abbreviations}
\begin{flushleft}
\renewcommand{\arraystretch}{1.1}
\begin{tabularx}{\textwidth}{@{}p{12mm}X@{}}
LoG & Laplacian-of-Gaussian \\
MSE & Mean Square error \\
PSNR & Peak Signal-to-Noise ratio \\
\end{tabularx}
\end{flushleft}
\section*{Symbols}
\begin{flushleft}
\renewcommand{\arraystretch}{1.1}
\begin{tabularx}{\textwidth}{@{}p{12mm}X@{}}
42 & ``The Answer to the Ultimate Question of Life, the Universe,
and Everything'' according to \cite{h2g2} \\
$c$ & Speed of light \\
$E$ & Energy \\
$m$ & Mass \\
$\pi$ & The number pi \\
\end{tabularx}
\end{flushleft}
% Now comes the main text
\mainmatter
\include{intro}
\include{chapter-1}
\include{chapter-2}
% ... and so on until
\include{chapter-n}
\include{conclusion}
% If you have appendices:
\appendixpage* % if wanted
\appendix
\include{appendix-1}
% ... and so on until
\include{appendix-n}
\backmatter
% The bibliography comes after the appendices.
% You can replace the standard "abbrv" bibliography style by another one.
\bibliographystyle{abbrv}
\bibliography{references}
% Printed only when enabled in the preamble.
\ifdefined\usetransparencystatement
\cleardoublepage
\input{transparency-statement-en}
\fi
\end{document}