\documentclass[%
  chapterprefix=false,%
  open=right,%
  twoside=true,%
  paper=a4,%
  logofile={logo.png},%
  thesistype=master,%
  UKenglish,%
]{se2thesis}
\listfiles
\usepackage[ngerman,main=UKenglish]{babel}
\usepackage{blindtext}
\usepackage[%
  csquotes=true,%
  booktabs=true,%
  siunitx=true,%
  minted=true,%
  selnolig=true,%
  widowcontrol=false,%
  microtype=true,%
  biblatex=true,%
  cleveref=true,%
]{se2packages}

\begin{filecontents}{\jobname.bib}
  @book{Knu86,
    author = {Knuth, Donald E.},
    year = {1986},
    title = {The \TeX book},
  }
\end{filecontents}
\addbibresource{\jobname.bib}

\usepackage{hyperref}

\author{Stephan Lukasczyk}
\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~\cite{Knu86}.

\begin{resq}
    What is \(41 + 1\)?
\end{resq}

\begin{summary}{Research Question 1}
   It's 42, obviously!
\end{summary}

\backmatter

\printbibliography

\end{document}
