markdown-math
Add math support to your VuePress site.
This plugin allows you to use mathjax
or katex
to render in your markdown content.
Usage
npm i -D @vuepress/plugin-markdown-math@next
# install one of the following packages:
npm i -D mathjax-full
npm i -D katex
import { markdownMathPlugin } from '@vuepress/plugin-markdown-math'
export default {
plugins: [
markdownMathPlugin({
// options
}),
],
}
Syntax
Inline mode:
$xxx$
Euler's identity is a beautiful formula in .
Euler's identity $e^{i\pi}+1=0$ is a beautiful formula in $\mathbb{R}^2$.
Display mode:
$$xxx$$ $$ xxx $$
$$ \frac {\partial^r} {\partial \omega^r} \left(\frac {y^{\omega}} {\omega}\right) = \left(\frac {y^{\omega}} {\omega}\right) \left\{(\log y)^r + \sum_{i=1}^r \frac {(-1)^ Ir \cdots (r-i+1) (\log y)^{ri}} {\omega^i} \right\} $$
Escaping
Escaping can be done by using \
before the $
character, or adding space both before and after the $
character.
The is a TeX equation, while $ a=1 $ and $a=1$ is not.
The $a=1$ is a TeX equation, while $ a=1 $ and \$a=1$ is not.
Support List
TeX Tutorial:
Plugin tutorial and FAQs: TeX
Katex:
Mathjax:
Options
type
Type:
'katex' | 'mathjax'
Details:
The package to render contents.
When this options is not specified, the plugin will try to detect which package is installed. If both are installed, it will use "mathjax".
Using KaTeX
When using KaTeX, any other options will be passed to KaTeX as KatexOptions
. See KaTeX Docs for all available options.
Besides, 2 special options are supported:
copy
: enable copy extension or not.mhchem
: enable mhchem extension or not.
Using MathJax
When using MathJax, you can set:
tex
: options which is passed to TeX input parseroutput
: either'svg'
(default) or'chtml'
to change output format between SVG and HTML.chtml
: options which is passed to Common HTML output parsersvg
: options which is passed to SVG output parser