Deploying to gh-pages from @ dolanmiu/docx@c4ed19e589 🚀

This commit is contained in:
dolanmiu
2024-01-03 00:14:22 +00:00
parent 0366e4f25d
commit 137f29e06f
379 changed files with 868 additions and 822 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")],
}),
```