You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#import"@preview/glossarium:0.5.1": make-glossary, register-glossary, print-glossary, gls#letabbreviations= (
(
key: "Abbr",
short: "Abbr",
group: "Group"
),
)
#show: make-glossary#register-glossary(abbreviations)
#setpage(numbering: "1")
#v(22cm)
#outline()
#pagebreak()
#print-glossary(
abbreviations,
// show-all: true // Uncommenting this makes the error disappear )= Chapter= Chapter= Chapter= Chapter@Abbr// #gls("Abbr") // Using this instead of or in addition to the previous line makes the error disappear
The reference to @Abbr causes the group heading to be printed and the outline to break into another page.
I believe that this somehow causes the group heading to not be printed in the next iteration and the outline to fit into one page again, because the page number of the outline repeats at the second page.
This code prevents the layout from converging:
The reference to
@Abbr
causes the group heading to be printed and the outline to break into another page.I believe that this somehow causes the group heading to not be printed in the next iteration and the outline to fit into one page again, because the page number of the outline repeats at the second page.
I traced the code to the line
glossarium/themes/default.typ
Line 868 in 8f42432
and changing the line to
makes the error disappear. So I think that the reference counting is at fault here, but I don't know how to investigate this further.
The text was updated successfully, but these errors were encountered: