style: run typstyle
release / release (push) Failing after 1m57s Details
Gitea Action for checking typst compilation / run-ci-linux (push) Failing after 1m53s Details

This commit is contained in:
Sven Vogel 2024-11-19 11:55:23 +01:00
parent a796f5ecfb
commit ba72a81c78
1 changed files with 30 additions and 16 deletions

View File

@ -101,15 +101,22 @@
align: top + left,
stroke: none,
[Matrikelnummer, Kurs:],
par(leading: 0.5em, for author in config.authors {
str(author.matriculation-number) + ", " + author.course
linebreak()
}),
par(
leading: 0.5em,
for author in config.authors {
str(author.matriculation-number) + ", " + author.course
linebreak()
},
),
[Betrieb, Betreuer:],
par(leading: 0.5em, for author in config.authors {
author.company + ", " + author.supervisor
linebreak()
}),
par(
leading: 0.5em,
for author in config.authors {
author.company + ", " + author.supervisor
linebreak()
},
),
)
] else if text.lang == "en" [
#grid(
@ -119,15 +126,22 @@
align: top + left,
stroke: none,
[Student ID, Course:],
par(leading: 0.5em, for author in config.authors {
str(author.matriculation-number) + ", " + author.course
linebreak()
}),
par(
leading: 0.5em,
for author in config.authors {
str(author.matriculation-number) + ", " + author.course
linebreak()
},
),
[Company, Supervisor:],
par(leading: 0.5em, for author in config.authors {
author.company + ", " + author.supervisor
linebreak()
}),
par(
leading: 0.5em,
for author in config.authors {
author.company + ", " + author.supervisor
linebreak()
},
),
)
] else [
#context panic("no translation for language: ", text.lang)