style: run typstyle
This commit is contained in:
parent
a796f5ecfb
commit
ba72a81c78
|
@ -101,15 +101,22 @@
|
||||||
align: top + left,
|
align: top + left,
|
||||||
stroke: none,
|
stroke: none,
|
||||||
[Matrikelnummer, Kurs:],
|
[Matrikelnummer, Kurs:],
|
||||||
par(leading: 0.5em, for author in config.authors {
|
par(
|
||||||
str(author.matriculation-number) + ", " + author.course
|
leading: 0.5em,
|
||||||
linebreak()
|
for author in config.authors {
|
||||||
}),
|
str(author.matriculation-number) + ", " + author.course
|
||||||
|
linebreak()
|
||||||
|
},
|
||||||
|
),
|
||||||
|
|
||||||
[Betrieb, Betreuer:],
|
[Betrieb, Betreuer:],
|
||||||
par(leading: 0.5em, for author in config.authors {
|
par(
|
||||||
author.company + ", " + author.supervisor
|
leading: 0.5em,
|
||||||
linebreak()
|
for author in config.authors {
|
||||||
}),
|
author.company + ", " + author.supervisor
|
||||||
|
linebreak()
|
||||||
|
},
|
||||||
|
),
|
||||||
)
|
)
|
||||||
] else if text.lang == "en" [
|
] else if text.lang == "en" [
|
||||||
#grid(
|
#grid(
|
||||||
|
@ -119,15 +126,22 @@
|
||||||
align: top + left,
|
align: top + left,
|
||||||
stroke: none,
|
stroke: none,
|
||||||
[Student ID, Course:],
|
[Student ID, Course:],
|
||||||
par(leading: 0.5em, for author in config.authors {
|
par(
|
||||||
str(author.matriculation-number) + ", " + author.course
|
leading: 0.5em,
|
||||||
linebreak()
|
for author in config.authors {
|
||||||
}),
|
str(author.matriculation-number) + ", " + author.course
|
||||||
|
linebreak()
|
||||||
|
},
|
||||||
|
),
|
||||||
|
|
||||||
[Company, Supervisor:],
|
[Company, Supervisor:],
|
||||||
par(leading: 0.5em, for author in config.authors {
|
par(
|
||||||
author.company + ", " + author.supervisor
|
leading: 0.5em,
|
||||||
linebreak()
|
for author in config.authors {
|
||||||
}),
|
author.company + ", " + author.supervisor
|
||||||
|
linebreak()
|
||||||
|
},
|
||||||
|
),
|
||||||
)
|
)
|
||||||
] else [
|
] else [
|
||||||
#context panic("no translation for language: ", text.lang)
|
#context panic("no translation for language: ", text.lang)
|
||||||
|
|
Loading…
Reference in New Issue