数学公式支持
KaTeX Syntax for Markdown
In your Markdown content, use the katex
shortcode for inserting KaTeX. Check documentation for Shortcode: katex.
Here’s an example Markdown content:
When {{< katex inline >}} a \ne 0 {{< /katex >}}, there are two solutions to
{{< katex >}} ax^2 + bx + c = 0 {{< /katex >}}
and they are:
{{< katex >}}
x = {-b \pm \sqrt{b^2-4ac} \over 2a}
{{< /katex >}}
Output:
When \( a \ne 0 \), there are two solutions to
\[ ax^2 + bx + c = 0 \]and they are:
\[ x = {-b \pm \sqrt{b^2-4ac} \over 2a} \]Customize KaTeX 配置
You can customize the default behavior of KaTeX if you want.
Minimo picks up 配置 for KaTeX from the /data/config/katex.json
file.
The default 配置 options look like this:
{
"library": {
"js": {
"main": "//unpkg.com/katex/dist/katex.min.js",
"autoRender": "//unpkg.com/katex/dist/contrib/auto-render.min.js"
},
"css": {
"main": "//unpkg.com/katex/dist/katex.min.css"
}
},
"options": {}
}
library
[Object
]:js
[Object
]:main
[String
]: URL for the main KaTeX libraryautoRender
[String
]: URL for the auto-render extension
css
[Object
]:main
[String
]: URL for the main KaTeX stylesheet
options
[Object
]:
So, if you want to tinker with it’s 配置 options:
- Create a
/data/config/katex.json
file in your site’s repository - Copy the default 配置 options
- Start hacking