mirror of
https://github.com/typst/typst
synced 2025-05-14 17:15:28 +08:00
Add documentation on how to access math functions in code (#458)
This commit is contained in:
parent
92d4450c44
commit
100e9d6085
@ -85,6 +85,16 @@ math: |
|
|||||||
Functions calls preceded by a hashtag are normal code function calls and not
|
Functions calls preceded by a hashtag are normal code function calls and not
|
||||||
affected by these rules.
|
affected by these rules.
|
||||||
|
|
||||||
|
All math functions are part of the `math` [module]($scripting/#modules), which
|
||||||
|
is available by default in equations. Outside of equations, they can be
|
||||||
|
accessed with the `math.` prefix. For example, to set the font used for
|
||||||
|
equations, write:
|
||||||
|
|
||||||
|
```example
|
||||||
|
#show math.equation: set text(font: "Fira Math")
|
||||||
|
$ sum_(i in NN) 1 + i $
|
||||||
|
```
|
||||||
|
|
||||||
layout: |
|
layout: |
|
||||||
Arranging elements on the page in different ways.
|
Arranging elements on the page in different ways.
|
||||||
|
|
||||||
@ -124,6 +134,7 @@ sym: |
|
|||||||
prefix.
|
prefix.
|
||||||
|
|
||||||
The `d` in an integral's `dx` can be written as `[$dif x$]`.
|
The `d` in an integral's `dx` can be written as `[$dif x$]`.
|
||||||
|
Outside math formulas, `dif` can be accessed as `math.dif`.
|
||||||
|
|
||||||
emoji: |
|
emoji: |
|
||||||
Named emoji.
|
Named emoji.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user