-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate.typ
176 lines (153 loc) · 4.79 KB
/
template.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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
#let template(
/// The title defaults to `document.title`. This argument should only be set
/// if the displayed title contains special formatting.
/// Do not forget to `#set document(title: "…")` in any case.
formatted-title: none,
article-kind: "Bachelorarbeit",
author: (
name: none,
matriculation-number: none,
major: none,
course-code: none,
),
company: (
name: none,
city: none,
logo: none,
supervisor: none,
),
dhbw: (
location: none,
reviewer: none,
logo: none,
),
signature: (
location: none,
date: datetime.today(),
),
deadline: none,
handling-period: none,
restriction-note: false,
abstract: none,
acronyms: none,
body
) = {
let translate(key) = context {
(
"de": (
"abstract": "Zusammenfassung",
"acronyms": "Abkürzungen",
),
"en": (
"abstract": "Abstract",
"acronyms": "Acronyms",
)
).at(text.lang).at(key)
}
set page(paper: "a4", margin: 2.5cm)
set text(size: 12pt, font: ("Libertinus Serif", "Linux Libertine"))
set par(leading: 0.75em, justify: true)
show link: set text(fill: blue.darken(60%))
// Title Page
context {
let title = if formatted-title == none { document.title } else { formatted-title }
let original-language = text.lang
text(lang: "de", {
grid(
row-gutter: 1fr,
block(
height: 2.5cm,
grid(
columns: 2,
column-gutter: 1fr,
align(left, company.logo),
align(right, {
if "logo" not in dhbw or dhbw.logo == none {
image("dhbw-logo.svg")
} else {
dhbw.logo
}
}),
)
),
align(horizon + center)[
#text(size: 18pt, lang: original-language, title) \
#v(1.5cm)
#set text(14pt)
#article-kind \
#v(1cm)
des Studienganges #author.major \
an der Dualen Hochschule Baden-Württemberg #dhbw.location \
#v(1cm)
von \
#if "name" not in author or author.name == none {
assert.eq(document.author.len(), 1, message: "`document.author` must only contain a single author")
document.author.first()
} else {
author.name
}
\
#v(1cm)
#deadline.display("[day].[month].[year]")
],
grid(
columns: (auto, 1fr),
row-gutter: 0.75em,
column-gutter: 2cm,
[Bearbeitungszeitraum], handling-period,
[Matrikelnummer, Kurs], [#author.matriculation-number, #author.course-code],
[Ausbildungsfirma], [#company.name, #company.city],
[Betreuer der Ausbildungsfirma], company.supervisor,
[Gutachter der Dualen Hochschule], dhbw.reviewer,
),
)
let signature = [
#block(
width: 50%,
height: 2em,
stroke: (
bottom: 1pt,
),
below: 8pt,
)
#signature.location, den #signature.date.display("[day].[month].[year]")
]
// Affidavit
[
#heading(outlined: false)[Erklärung]
gemäß Ziffer 1.1.13 der Anlage 1 zu §§ 3, 4 und 5 der Studien- und Prüfungsordnung für die Bachelorstudiengänge im Studienbereich Technik der Dualen Hochschule Baden-Württemberg vom 29.09.2017.
Ich versichere hiermit, dass ich meine #article-kind mit dem Thema:
#align(center, text(size: 14pt, lang: original-language, title))
selbstständig verfasst und keine anderen als die angegebenen Quellen und Hilfsmittel benutzt habe.
Ich versichere zudem, dass die eingereichte elektronische Fassung mit der gedruckten Fassung übereinstimmt.
#signature
]
// Restriction Note
if restriction-note [
#heading(outlined: false)[Sperrvermerk]
gemäß Ziffer 1.1.13 der Anlage 1 zu §§ 3, 4 und 5 der Studien- und Prüfungsordnung für die Bachelorstudiengänge im Studienbereich Technik der Dualen Hochschule Baden-Württemberg vom 29.09.2017.
"Der Inhalt dieser Arbeit darf weder als Ganzes noch in Auszügen Personen außerhalb des Prüfungsprozesses und des Evaluationsverfahren zugänglich gemacht werden, sofern keine anders lautende Genehmigung vom Dualen Partner vorliegt."
#signature
]
})
}
pagebreak(weak: true)
if abstract != none {
heading(outlined: false, translate("abstract"))
abstract
}
if acronyms != none {
heading(outlined: false, translate("acronyms"))
acronyms
}
pagebreak(weak: true)
outline(indent: true)
counter(page).update(0)
set page(
number-align: right,
numbering: "1 / 1",
)
set heading(numbering: "1.1")
set figure(placement: auto)
body
}