2015-03-19 10:53:45 +00:00
title: $:/plugins/tiddlywiki/katex/usage
2018-12-01 13:28:51 +00:00
!! Reference:
# Mathematical typesetting: [ext[https://katex.org/docs/supported.html]]
# Chemical typesetting: [ext[https://mhchem.github.io/MathJax-mhchem/]]
<hr>
2015-03-19 10:53:45 +00:00
The usual way to include ~LaTeX is to use `$$`. For example:
```
$$\displaystyle f(x) = \int_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,d\xi$$
```
2015-12-24 16:45:45 +00:00
Single line equations will render in inline mode. If there are newlines between the `$$` delimiters, the equations will be rendered in display mode.
2015-12-23 17:14:58 +00:00
2015-03-19 10:53:45 +00:00
The underlying widget can also be used directly, giving more flexibility:
```
2015-12-23 17:14:58 +00:00
<$latex text="f(x) = \int_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,d\xi" displayMode="true"></$latex>
2015-03-19 10:53:45 +00:00
```
The KaTeX widget is provided under the name `<$latex>` and is also available under the alias `<$katex>`. It's better to use the generic `<$latex>` name unless you are running multiple ~LaTeX plugins and wish to specifically target KaTeX.