typst/tests/typ/bugs/fold-vector.typ
2024-02-26 13:39:41 +00:00

21 lines
294 B
Typst

// Test fold order of vectors.
---
#set text(features: (liga: 1))
#set text(features: (liga: 0))
fi
---
#underline(stroke: aqua + 4pt)[
#underline[Hello]
]
---
#let c = counter("mycounter")
#c.update(1)
#locate(loc => [
#c.update(2)
#c.at(loc) \
Second: #locate(loc => c.at(loc))
])