mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
27 lines
548 B
XML
27 lines
548 B
XML
// Test math accents.
|
|
|
|
---
|
|
// Test function call.
|
|
$grave(a), acute(b), hat(f), tilde(§), macron(ä), diaer(a), ä \
|
|
breve(\&), dot(!), circle(a), caron(@), arrow(Z), arrow.l(Z)$
|
|
|
|
---
|
|
// Test `accent` function.
|
|
$accent(ö, .), accent(v, <-), accent(ZZ, \u{0303})$
|
|
|
|
---
|
|
// Test accent bounds.
|
|
$sqrt(tilde(T)) + hat(f)/hat(g)$
|
|
|
|
---
|
|
// Test wide base.
|
|
$arrow("ABC" + d), tilde(sum)$
|
|
|
|
---
|
|
// Test effect of accent on superscript.
|
|
$A^x != hat(A)^x != hat(hat(A))^x$
|
|
|
|
---
|
|
// Test high base.
|
|
$ tilde(integral), tilde(integral)_a^b, tilde(integral_a^b) $
|