当前位置: 首页 > 工具软件 > KaTeX > 使用案例 >

Markdown里latex数学公式(Katex)

潘飞英
2023-12-01

引子:

Markdown是一种轻量级的标记语言,排版简单,所以学习如何使用它是非常必要的一件事情。今天我们就来学习Markdown中的 Latex的 数学公式

公式运算符号:

运算符说明举例举例代码
+ x + y x+y x+y$x+y$
- x − y x-y xy$x-y$
\times x × y x\times y x×y$x \times y$
\ast x ∗ y x \ast y xy$x \ast y$
\div x ÷ y x÷y x÷y$ x \div y $
\frac分数 x y \frac{x}{y} yx$\frac{x}{y}$
^上标 x y x^y xy$ x ^ y $
_下标 x y x_y xy$ x _ y $
\sqrt开二次方 x \sqrt x x $ \sqrt x $
\sqrt开方 y 4 + 3 y − 1 x \sqrt[x]{y^4+3y-1} xy4+3y1 $ \sqrt[x]{y^4+3y-1} $
\pm加减 x ± y x \pm y x±y$ x \pm y $
\mp减加 x ∓ y x\mp y xy$ x \mp y $
\log对数 log ⁡ 2 ( x ) \log_2(x) log2(x)$ \log_2(x) $
\lim极限 lim ⁡ x → 3 \lim_{x\to3} limx3$\lim_{x\to3}$
\displaystyle块公式格式 lim ⁡ x → ∞ \displaystyle \lim_{x\to\infty} xlim$ \displaystyle \lim_{x\to\infty} $
\sum求和 ∑ 1 ∞ \sum_1^\infty 1$ \sum_1^\infty $
\int积分 ∫ 0 ∞ x 2 × t a n x d x \int_0^\infty x^2\times tanx {\rm d}x 0x2×tanxdx$\int_0^\infty x^2\times tanx {\rm d}x$

举例:

lim ⁡ x → ∞ x 2 [ a r c t a n ( 1 + 1 x ) − a r c t a n ( 1 + 1 x + 1 ) ] \displaystyle \lim_{x\to\infty} x^2[arctan(1+\frac{1}{x})-arctan(1+\frac{1}{x+1})] xlimx2[arctan(1+x1)arctan(1+x+11)]
$$\displaystyle \lim_{x\to\infty} x^2[arctan(1+\frac{1}{x})-arctan(1+\frac{1}{x+1})]$$
 类似资料: