1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
\documentclass[%
chapterprefix=false,%
open=right,%
twoside=true,%
paper=a4,%
logofile={logo.pdf},%
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=numeric,%
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}
\usepackage[capitalise]{cleveref}
%\crefname{resq}{research question}{research questions}
\Crefname{resq}{Research Question}{Research Questions}
\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}. And we want to reference
\cref{rq:1} and \cref{hyp:1} here.
\begin{resq}\label{rq:1}
What is \(41 + 1\)?
\end{resq}
\begin{hyp}\label{hyp:1}
We hypothesise that the answer to \cref{rq:1} is 42!
\end{hyp}
And using the auto-cite functionality to cite Knuth~\autocite{Knu86}.
\backmatter
\printbibliography
\end{document}
|