added max-width param to _col

This commit is contained in:
2024-11-09 14:42:11 +01:00
parent ab1386e721
commit b33531bef5
2 changed files with 10 additions and 6 deletions

View File

@ -19,14 +19,15 @@
),)
}
#let _col(p1, p2, width: auto, margin: 0, min-width: 0) = {
#let _col(p1, p2, width: auto, margin: 0, min-width: 0, max-width: none) = {
return ((
type: "col",
p1: p1,
p2: p2,
width: width,
margin: margin,
min-width: min-width
min-width: min-width,
max-width: max-width
),)
}