如何在Markdown编辑器中简单编辑数学公式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在Markdown编辑器中简单编辑数学公式相关的知识,希望对你有一定的参考价值。

参考技术A MathJaxTeXandLaTeXSupport用\boldsymbol。注意需要在MathJax的设置中打开相关扩展。

如何在支持 MathJax 的编辑器中使用 LaTeX 编辑数学公式

MathJax是什么?

MathJax是一个开源JavaScript库。它支持LaTeX、MathML、AsciiMath符号,可以运行于所有流行浏览器上。

LaTeX是什么?

LaTeX(LATEX,音译“拉泰赫”)是一种基于ΤΕΧ的排版系统。

如何使用LaTeX公式?(这里列出的是本人常用的,更多可以查看最后的“参考链接”)

  1. To see how any formula was written, right-click on the expression it and choose "Show Math As > TeX Commands"(When you do this, the ‘$‘ will not display.)

  2. For inline formulas, enclose the formula in $...$. For displayed formulas, use $$...$$.

  3. For superscripts and subscripts, use ^ and _. Don‘t forget {…} if the superscripts or subscripts are more than a single symbol。

  4. Sums and integrals sum and int; the subscript is the lower limit and the superscript is the upper limit, so for example sum_1^n (sum_1^n).

Matrices

矩阵语法:egin{matrix}…end{matrix} 同一行的元素之间使用 & 分割,每行以 \ 结尾。如:

$$
    egin{matrix}
    1 & x & x^2     1 & y & y^2     1 & z & z^2     end{matrix}
$$

EX01. matrix 关键字可以替换成一下其他关键字。

关键字 显示
matrix (egin{matrix}1&2\3&4end{matrix})
pmatrix (egin{pmatrix}1&2\3&4end{pmatrix})
bmatrix (egin{bmatrix}1&2\3&4end{bmatrix})
Bmatrix (egin{Bmatrix}1&2\3&4end{Bmatrix})
vmatrix (egin{vmatrix}1&2\3&4end{vmatrix})
Vmatrix (egin{Vmatrix}1&2\3&4end{Vmatrix})

EX02. 不同方向的省略号。 cdots -> (cdots) ddots -> (ddots) vdots -> (vdots)

[ egin{pmatrix} 1 & a_1 & a_1^2 & cdots & a_1^n 1 & a_2 & a_2^2 & cdots & a_2^n vdots & vdots& vdots & ddots & vdots 1 & a_m & a_m^2 & cdots & a_m^n end{pmatrix} ]

EX03. 行中的小矩阵。 igl( egin{smallmatrix} a & b \ c & d end{smallmatrix} igr) -> (igl( egin{smallmatrix} a & b \ c & d end{smallmatrix} igr))

参考:

MathJax basic tutorial and quick reference

以上是关于如何在Markdown编辑器中简单编辑数学公式的主要内容,如果未能解决你的问题,请参考以下文章

Markdown使用-5 数学公式

Markdown编辑器模式使用LaTex编辑数学公式入门

Markdown编辑器模式使用LaTex编辑数学公式入门

在CSDN编辑器(Markdown编辑器)中应用LaTex公式

在CSDN编辑器(Markdown编辑器)中应用LaTex公式

如何在markdown中插入数学公式