-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.typ
More file actions
75 lines (58 loc) · 1.61 KB
/
main.typ
File metadata and controls
75 lines (58 loc) · 1.61 KB
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
#set page(paper: "a4")
//#set page(margin: (left:3cm, right: 3cm, top: 3cm, bottom:3cm))
#set page(margin: (inside: 4cm, outside: 3cm, top: 3cm, bottom: 3cm))
#set par(leading: 0.65em * 1.5, spacing: 1.5em, justify: true)
#set text(region: "GB", font: "Ubuntu", size: 11pt)
#set heading(numbering: "1.")
#set document(
title: "Optimisation of Reinforcement Learning using Evolutionary Algorithms",
author: "Mario Fokken",
date: datetime(day:27, month:3, year:2025)
)
#show heading: it => {
set text(font: "Libertinus Serif")
set block(below: 1em, above: 2em)
smallcaps(it)
}
#show heading.where(level: 1): it => { colbreak(weak: true); it}
#include "template/titlepage.typ"
#place(center)[
#heading(numbering: none, outlined: false)[Abstract]\
#include "template/abstract.typ"
]
#pagebreak()
#show outline.entry.where(
level: 1
): it => {
v(12pt, weak: true)
strong(it)
}
#outline(indent: auto)
#{
set footnote.entry(separator: none)
show footnote.entry: hide
show ref: none
show footnote: none
pagebreak()
outline(
title: [List of figures], target: figure,
)
}
#pagebreak()
#counter(page).update(1)
#counter(footnote).update(0)
#set page(numbering: "1")
#include "chapters/introduction.typ"
#include "chapters/basics/basics.typ"
#include "chapters/stack/stack.typ"
#include "chapters/concept.typ"
#include "chapters/implementation.typ"
#include "chapters/experiment.typ"
#include "chapters/results.typ"
#include "chapters/evaluation.typ"
#include "chapters/conclusion.typ"
#pagebreak()
#bibliography("refs.bib")
#pagebreak()
#include "chapters/appendix.typ"
#include "template/erklaerung.typ"