mirror of
https://github.com/typst/typst
synced 2025-05-15 09:35:28 +08:00
21 lines
294 B
Typst
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))
|
|
])
|