style: run typstyle format
Build'n check / run-ci-linux (push) Has been skipped Details
Build'n check / run-ci-linux (pull_request) Successful in 2m33s Details

This commit is contained in:
Sven Vogel 2024-11-29 18:31:54 +01:00
parent 793e31c87a
commit bb00c83408
1 changed files with 16 additions and 12 deletions

View File

@ -102,19 +102,23 @@
#let rows = int(config.authors.len() / 3 + 0.5) #let rows = int(config.authors.len() / 3 + 0.5)
#for i in range(0, rows) { #for i in range(0, rows) {
let cols = calc.min(config.authors.len() - i * 3, 3) let cols = calc.min(config.authors.len() - i * 3, 3)
grid(columns: cols, column-gutter: 1.5em, ..config.authors.slice(i * 3, i * 3 + cols).map(author => grid(columns: cols, column-gutter: 1.5em, ..config
grid(columns: 1, row-gutter: 1em, .authors
text(size: 1.25em, author.name), .slice(i * 3, i * 3 + cols)
text(size: 1em, author.company), .map(author => grid(
text(size: 1em, author.contact), columns: 1,
[ row-gutter: 1em,
#str(author.matriculation-number), text(size: 1.25em, author.name),
#author.course text(size: 1em, author.company),
] text(size: 1em, author.contact),
))) [
} #str(author.matriculation-number),
#author.course
],
)))
}
] ]
#set align(bottom) #set align(bottom)