%! TeX spellcheck = en_GB
%! TeX TS-program = latexmk
%! TeX encoding = UTF-8 Unicode
\documentclass[%
class=scrreprt,%
chapterprefix=false,%
open=right,%
logofile={lion.png},% adjust this, you need to upload the University logo to your project because we are not allowed to share it
paper=a4,%
thesistype=master,% adjust this to your needs
toc=chapterentrydotfill,%T
twoside=true,%
UKenglish,% you want proper English, not simplified English, don't you?
]{se2thesis}
\listfiles
\usepackage[ngerman,main=UKenglish]{babel}
\usepackage{blindtext}
\usepackage[%
csquotes=true,%
booktabs=true,%
siunitx=true,%
minted=true,%
selnolig=false,% only works with LuaLaTeX
widowcontrol=false,% only works with LuaLaTeX
microtype=true,%
biblatex=numeric,%
cleveref=true,%
]{se2packages}
\addbibresource{literature.bib}
\usepackage{hyperref}
\author{Master Muster}
\title{A Master Thesis Example Document}
\degreeprogramme{Computer Science}
\matrnumber{0815}
\supervisor{Prof.\,Dr.~Max Mustermann}
\external{Prof.~John Doe,~PhD}
\advisor{Marianne Musterfrau}
\department{Faculty of Examples}
\institute{Chair of Example}
\location{Passau}
\begin{document}
\frontmatter
\maketitle
\authorshipDeclaration
\begin{abstract}
An English abstract to the thesis.
\end{abstract}
\begin{abstract}[german]
Eine deutschsprachige Zusammenfassung der Arbeit.
\end{abstract}
\begin{acknowledgements}
Some acknowledgements.
\end{acknowledgements}
\tableofcontents
\mainmatter
\blinddocument
\section{Further Examples}
We could reference the \TeX{} book~\autocite{Knu86}.
\begin{resq}
What is \(41 + 1\)?
\end{resq}
\begin{summary}{Research Question 1}
It's 42, obviously!
\end{summary}
And using the auto-cite functionality to cite Knuth~\autocite{Knu86}.
\backmatter
\printbibliography
\end{document}