-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.typ
51 lines (39 loc) · 1.4 KB
/
thesis.typ
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
#import "@preview/definitely-not-tuw-thesis:0.1.0": *
#import "custom-styles.typ": custom-styles
#show: thesis.with(
font: "TeX Gyre Heros",
title: (
en: "Using state changes to detect and simulate transaction order dependency in Ethereum",
de: "Simulation und Analyse von Transaktionsreihenfolgen in Ethereum",
),
subtitle: (:),
lang: "en",
author: (name: "Othmar Lechner", student-number: 11841833),
advisor: (name: "Gernot Salzer", pre-title: "Ao.Univ.Prof. Dr."),
assistants: ((
name: "Monika di Angelo",
pre-title: "Ass.Prof.in Dr.in",
),),
curriculum: (en: "Software Engineering & Internet Computing", de: "Software Engineering & Internet Computing"),
keywords: ("Ethereum", "TOD", "Frontrunning"),
date: datetime.today(),
)
#show: flex-caption-styles
#show: toc-styles
#show: general-styles
#show: front-matter-styles
#show: custom-styles
#include "front-matter.typ"
#outline()
#show figure.where(kind: "algorithm"): set figure(supplement: "Algorithm")
#show: main-matter-styles
#set heading(numbering: "1.1.1.a")
#include "main.typ"
#show: back-matter-styles
#set page(header: none)
#outline(title: "List of Figures", target: figure.where(kind: image))
#outline(title: "List of Tables", target: figure.where(kind: table))
#outline(title: "List of Algorithms", target: figure.where(kind: "algorithm"))
#bibliography("refs.bib")
#show: appendix-styles
#include "appendix.typ"