Open
Description
The following minimal (I wasn't able to reduce it any further) example makes the layout diverge with Glossarium >= 0.5.2 and Typst 0.12/0.13:
#import "@preview/glossarium:0.5.2": make-glossary, register-glossary, print-glossary
#let items = (
(key: "a", short: "ShortA", long: "Entry A"),
(key: "b", short: "ShortB", long: "Entry B"),
)
#show: make-glossary
#register-glossary(items)
#set text(size: 12pt)
= Section
@a
#lorem(250)
@b
#lorem(100)
@b
#lorem(100)
@a
#lorem(200)
#print-glossary(items)
It also makes all @a
references link to the first page instead of the glossary entry location. Yet, everything works fine with Glossarium 0.5.1 on Typst 0.12. Unfortunately, I don't have enough time to hunt this down at the moment, so I'm leaving this issue here for now. @quachpas Any ideas what might be happening here?