changed counter to work with typst 0.1.0

This commit is contained in:
Bethany E. Toma 2023-04-05 16:59:29 +02:00
parent c48c70fe46
commit 870e346bc1
1 changed files with 4 additions and 4 deletions

View File

@ -88,6 +88,10 @@
}
}
if numbering {
gloss_count.step()
}
let gloss_number = if numbering {
[(#gloss_count.display())]
} else {
@ -95,10 +99,6 @@
}
[#gloss_number #pad(left: 1em)[#gloss_items]]
if numbering {
gloss_count.step()
}
}
#let numbered_gloss = gloss.with(numbering: true)