blob: 5d57ad33365122b3a2cc2f6e6e41180b7d30b1bf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// 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))
])
|