mirror of
https://github.com/typst/typst
synced 2025-05-13 12:36:23 +08:00
21 lines
272 B
XML
21 lines
272 B
XML
// Test math formulas.
|
|
|
|
---
|
|
The sum of $a$ and $b$ is $a + b$.
|
|
|
|
---
|
|
We will show that:
|
|
$ a^2 + b^2 = c^2 $
|
|
|
|
---
|
|
Prove by induction:
|
|
$ sum_(k=0)^n k = (n(n+1))/2 $
|
|
|
|
---
|
|
// Test that blackboard style looks nice.
|
|
$ f: NN arrow RR $
|
|
|
|
---
|
|
// Error: 1:3 expected dollar sign
|
|
$a
|