-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
76 lines (59 loc) · 1.77 KB
/
thesis.tex
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
\documentclass[
twoside,
english
]{sdqthesis}
% for rendering quantum circuits with tikz
\usepackage{tikz}
\usetikzlibrary{quantikz}
\usepackage{blochsphere}
% for typesetting frequently used fractions with less vertical space (\sfrac)
\usepackage{xfrac}
% for typesetting pseudocode algorithms
\usepackage[
linesnumbered,
ruled % algorithm styling similar to booktabs
]{algorithm2e}
%% This declares a command \Comment
%% The argument will be surrounded by /* ... */
\SetKwComment{Comment}{/* }{ */}
\usepackage[citestyle=numeric,style=numeric,backend=biber]{biblatex}
\addbibresource{thesis.bib}
% for arranging multiple figures next to each other
\usepackage{subfig}
\graphicspath{{./images/}}
\author{Maximilian Tim Schweikart}
\title{Extending Gradient-Free Optimization of Parameterized Quantum Circuits to Controlled Pauli Gates}
\thesistype{Bachelor's Thesis}
\myinstitute{Steinbuch Centre for Computing}
\grouplogo{../../images/SCC-Logo-notext} % path is relative to the sdqthesis/logos folder!
\reviewerone{Prof. Dr. Achim Streit}
\reviewertwo{Prof. Dr. Bernhard Neumair}
\advisorone{Dr. Eileen Kühn}
\advisortwo{Dr. Max Fischer}
\editingtime{Aug. 22, 2023}{Dec. 22, 2023}
\settitle
\begin{document}
\setpdf
\maketitle
\frontmatter
\include{sections/00-declaration}
\setcounter{page}{1}
\pagenumbering{roman}
\tableofcontents
% TODO: uncomment once there are any relevant figures and tables
% \listoffigures
% \listoftables
% === content of the thesis ===
\mainmatter
\include{sections/01-introduction}
\include{sections/02-background}
\include{sections/03-related-work}
\include{sections/04-gradient-free}
\include{sections/05-evaluation}
\include{sections/06-conclusion}
\printbibliography[
heading=bibintoc
]
\appendix
\input{sections/07-appendix}
\end{document}