summaryrefslogtreecommitdiff
path: root/exampleSite/content.en/docs/shortcodes/katex.md
diff options
context:
space:
mode:
Diffstat (limited to 'exampleSite/content.en/docs/shortcodes/katex.md')
-rw-r--r--exampleSite/content.en/docs/shortcodes/katex.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/exampleSite/content.en/docs/shortcodes/katex.md b/exampleSite/content.en/docs/shortcodes/katex.md
new file mode 100644
index 0000000..7587bd7
--- /dev/null
+++ b/exampleSite/content.en/docs/shortcodes/katex.md
@@ -0,0 +1,28 @@
+# KaTeX
+
+KaTeX shortcode let you render math typesetting in markdown document. See [KaTeX](https://katex.org/)
+
+## Example
+{{< columns >}}
+
+```latex
+{{</*/* katex [display] [class="text-center"] */*/>}}
+f(x) = \int_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,d\xi
+{{</*/* /katex */*/>}}
+```
+
+<--->
+
+{{< katex display >}}
+f(x) = \int_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,d\xi
+{{< /katex >}}
+
+{{< /columns >}}
+
+## Display Mode Example
+
+Here is some inline example: {{< katex >}}\pi(x){{< /katex >}}, rendered in the same line. And below is `display` example, having `display: block`
+{{< katex display >}}
+f(x) = \int_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,d\xi
+{{< /katex >}}
+Text continues here.