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, 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)