Add math limit component (#2510)

This commit is contained in:
yaokailun
2024-01-03 08:13:13 +08:00
committed by GitHub
parent 13cf3eee5a
commit c4ed19e589
9 changed files with 210 additions and 0 deletions

View File

@ -263,3 +263,23 @@ new MathAngledBrackets({
],
}),
```
### Limit
#### Limit Upper
```ts
new MathLimitUpper({
children: [new MathRun("x")],
limit: [new MathRun("-")],
}),
```
#### Limit Lower
```ts
new MathLimitLower({
children: [new MathRun("lim")],
limit: [new MathRun("x→0")],
}),
```