first commit

This commit is contained in:
2025-06-25 15:54:11 +02:00
commit 23e651d13a
465 changed files with 30834 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
+++
weight = 31
+++
{{< slide id=math-shortcode >}}
### Mathematical equations
Use the `math` shortcode if you need to enable reveal-js highlighting module
(`codeFences = false`).
```code
{{</* math */>}}
\tag*{(1)} \lim\limits_{x \to \infty} \exp(-x) = 0
{{</* /math */>}}
```
<small>
displays as:
</small>
{{< math >}}
\tag*{(1)} \lim\limits_{x \to \infty} \exp(-x) = 0
{{< /math >}}
For inline equations, use a self closed `math` shortcode:
```code
Albert Einstein's famous formula: {{</* math "E=mc^2" /*/>}}
```
<small>
is rendered to:
</small>
Albert Einstein's famous formula: {{< math "E=mc^2" />}}