Compare commits

...

2 Commits

Author SHA1 Message Date
Greg Shuflin 2efa9a71b7
Merge pull request #3 from betoma/counter-fix
changed counter to work with typst 0.1.0
2023-04-08 00:11:06 -07:00
Bethany E. Toma 870e346bc1 changed counter to work with typst 0.1.0 2023-04-05 16:59:29 +02:00
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)