added column width options

This commit is contained in:
2024-10-04 15:11:45 +02:00
parent 647d50e125
commit 56cc1b11c0
10 changed files with 90 additions and 3 deletions

View File

@@ -1,3 +1,12 @@
#let normalize-units(value) = {
if type(value) == int or type(value) == float {
return value
}
if type(value) == length {
return value / 1pt
}
panic("Unsupported type '" + str(type(value)) + "'")
}
#let get-participants-i(participants) = {
let pars-i = (:)
for (i, p) in participants.enumerate() {