-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcover.ty
83 lines (74 loc) · 1.67 KB
/
cover.ty
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
#let background = image(
"cover.svg",
)
#set page(
background: background,
fill: black,
width: 170mm + 6.91mm + 170mm + 5mm + 60mm,
height: 244mm,
margin: 0mm,
)
#let font = "Montserrat"
#set text(font: font, fallback: false, size: 22pt)
#set text(
fill: white,
)
#let back() = [
]
#let side() = box(
inset: (x:-90mm,y:93mm),
text(size: 12pt, rotate([
#h(14.7em)
Predicting Dropout in Special Forces Selection |
Rik Huijzer
], 90deg))
)
#let front() = [
#set align(center)
#set text(weight: 700)
#v(11em)
Predicting Dropout in \
Special Forces Selection
#v(15.8em)
#text(size: 14pt, [Rik Huijzer])
]
#let bookmark() = [
#set align(center)
#text(size: 14pt,
block([
#v(5em)
#text(size: 20pt, weight: 500, [Invitation])
#v(1em)
For attending the public defense of the thesis
#v(1em)
#text(size: 14pt, weight: 500, [_Predicting Dropout in Special Forces Selection_])
#v(1em)
by \
Rik Huijzer
#v(1em)
On Monday February 17th, 2025\
at 16:15
#v(1em)
#set text(size: 12pt)
The ceremony will take place at the Aula of the Academy building, University of Groningen\
Broerstraat 5, Groningen
#v(0.8em)
#text(size: 12pt, weight: 300, [Paranimfen:])\
#v(0.5em)
Yannick Hill\
_y.hill\@vu.nl_
#v(0.5em)
Koen Sprenkels
], inset: 3mm)
)
]
#let stroke = none
#grid(
columns: (170mm, 6.91mm, 170mm, 5mm, 60mm),
rows: 244mm,
grid.cell(back(), stroke: stroke),
grid.cell(side(), stroke: stroke),
grid.cell(front(), stroke: stroke),
grid.cell([], stroke: stroke),
grid.cell(bookmark(), stroke: stroke)
)