1. 程式人生 > >Markdown文件數學公式集合

Markdown文件數學公式集合

正文(inline)中的LaTeX公式用$…$定義,單獨一行用$ . . . . .... $定義

1. 上下標
^表示上標,如果是多個字元,請使用{},_表示下標,如果是多個字元,請使用()

$$ f(x) = x_i + y^x,f((x+y)^{u}) = (x+y)^{u+v}$$

f ( x ) = x i +

y x f ( ( x + y
) u ) = ( x + y ) u + v f(x) = x_i + y^x,f((x+y)^{u}) = (x+y)^{u+v}

2. 開方
sqrt表示開方

$\sqrt[m]{n}$ # 表示對n開m次方
$$\sqrt{25}$$
$$\sqrt[3]{25}$$

25 25 3 \sqrt{25}, \sqrt[3]{25}

3. 省略號
\ldots 表示語文字底線對其的省略號,\cdots 表示與文字中線對其的省略號,\cdot 表示一個點,也就是點乘號

這裡是省略號$\ldots$,底線對齊
這裡是省略號$\cdots$,中線對齊
$$ f(x_1,x_2,\ldots,x_n) = x_1^2 +x_2^2+\cdots+x_n^2 $$

這裡是省略號 \ldots ,底線對齊
這裡是省略號 \cdots ,中線對齊
f ( x 1 , x 2 , , x n ) = x 1 2 + x 2 2 + + x n 2 f(x_1,x_2,\ldots,x_n) = x_1^2 +x_2^2+\cdots+x_n^2

4. 括號
(), []直接寫即可,{}需要轉義

這是小括號$()$
這是小括號$[]$
這是小括號$\{\}$

( ) , [ ] , { } (), [], \{\}

5. 分號
使用 \frac{分子}{分母},或者使用 分子 \over 分母

$$\frac{a+b}{c+d}$$

a + b c + d \frac{a+b}{c+d} , n + m m n {n+m} \over {m\cdot n}

6. 向量

\vec a \cdot \vec b = 0

a b = 0 \vec a \cdot \vec b = 0

7. 箭頭

示例 程式碼 示例 程式碼
\leftarrow \Leftarrow
\rightarrow \Rightarrow
\leftrightarrow \Leftrightarrow
\longleftarrow \Longleftarrow
\longrightarrow \Longrightarrow
\longleftrightarrow \Longleftrightarrow
\uparrow \downarrow
\updownarrow

8. 求和, 求積

$$\sum_{i=1}^{n} x_i$$
$$\prod_{i=0}^n{1 \over {x^2}}$$

i = 1 n x i , i = 0 n 1 x 2 \sum_{i=1}^{n} x_i, \prod_{i=0}^n{1 \over {x^2}}

9. 積分

$$\int_0^\infty{f(x)dx}$$

0 f ( x ) d x \int_0^\infty{f(x)dx}

10. 方程式

$$\begin{cases}
a_1x+b_1y+c_1z=d_1\\
a_2x+b_2y+c_2z=d_2\\
a_3x+b_3y+c_3z=d_3\\
\end{cases}
$$

{ a 1 x + b 1 y + c 1 z = d 1 a 2 x + b 2 y + c 2 z = d 2 a 3 x + b 3 y + c 3 z = d 3 \begin{cases} a_1x+b_1y+c_1z=d_1\\ a_2x+b_2y+c_2z=d_2\\ a_3x+b_3y+c_3z=d_3\\ \end{cases}

11. 矩陣

$$\begin{bmatrix}
{a_{11}}&{a_{12}}&{\cdots}&{a_{1n}}\\
{a_{21}}&{a_{22}}&{\cdots}&{a_{2n}}\\
{\vdots}&{\vdots}&{\ddots}&{\vdots}\\
{a_{m1}}&{a_{m2}}&{\cdots}&{a_{mn}}\\
\end{bmatrix}$$

[ a 11 a 12 a 1 n a 21 a 22 a 2 n a m 1 a m 2 a m n ] \begin{bmatrix} {a_{11}}&{a_{12}}&{\cdots}&{a_{1n}}\\ {a_{21}}&{a_{22}}&{\cdots}&{a_{2n}}\\ {\vdots}&{\vdots}&{\ddots}&{\vdots}\\ {a_{m1}}&{a_{m2}}&{\cdots}&{a_{mn}}\\ \end{bmatrix}