mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
64 lines
1.1 KiB
Typst
64 lines
1.1 KiB
Typst
--- math-primes ---
|
|
// Test dedicated syntax for primes
|
|
$a'$, $a'''_b$, $'$, $'''''''$
|
|
|
|
--- math-primes-spaces ---
|
|
// Test spaces between
|
|
$a' ' '$, $' ' '$, $a' '/b$
|
|
|
|
--- math-primes-complex ---
|
|
// Test complex prime combinations
|
|
$a'_b^c$, $a_b'^c$, $a_b^c'$, $a_b'^c'^d'$
|
|
|
|
$(a'_b')^(c'_d')$, $a'/b'$, $a_b'/c_d'$
|
|
|
|
$∫'$, $∑'$, $a'^2^2$, $a'_2_2$
|
|
|
|
$f_n'^a'$, $f^a'_n'$
|
|
|
|
$ ∑'_S' $
|
|
|
|
--- math-primes-attach ---
|
|
// Test attaching primes only
|
|
$a' = a^', a_', a_'''^''^'$
|
|
|
|
--- math-primes-scripts ---
|
|
// Test primes always attaching as scripts
|
|
$ x' $
|
|
$ x^' $
|
|
$ attach(x, t: ') $
|
|
$ <' $
|
|
$ attach(<, br: ') $
|
|
$ op(<, limits: #true)' $
|
|
$ limits(<)' $
|
|
|
|
--- math-primes-limits ---
|
|
// Test forcefully attaching primes as limits
|
|
$ attach(<, t: ') $
|
|
$ <^' $
|
|
$ attach(<, b: ') $
|
|
$ <_' $
|
|
|
|
$ limits(x)^' $
|
|
$ attach(limits(x), t: ') $
|
|
|
|
--- math-primes-after-code-expr ---
|
|
// Test prime symbols after code mode.
|
|
#let g = $f$
|
|
#let gg = $f$
|
|
|
|
$
|
|
#(g)' #g' #g ' \
|
|
#g''''''''''''''''' \
|
|
gg'
|
|
$
|
|
|
|
--- math-primes-with-superscript ---
|
|
// Test prime symbols don't raise the superscript position
|
|
$
|
|
sqrt(f)/f
|
|
sqrt(f^2)/f^2
|
|
sqrt(f'^2)/f'^2
|
|
sqrt(f''_n^2)/f''^2_n
|
|
$
|