LaTex 乘和除

1
2
3
4
5
a \codt b %点乘
a \times b %叉乘
a \div b % a➗b
\tfrac{}{}
\dfrac{}{} %竖式

LaTex 微分和积分

1
2
3
4
5
6
7
\mathrm{d}x %求导符号
\partial x %偏导符号
x` %撇形式求导
\dot{x} %点形式求导 \ddot \dddot
\nabla{x} %Nabla算子
\int_{0}^{1} f(x) \mathrm{d}x %积分 \iint \iiint
\oint f(x) \mathrm{d}x %闭路积分 \oiint \oiiint

LaTex 多行公式🤏

1
2
3
4
5
6
7
8
9
10
11
12
13
14
\begin{gather}
a+b=c \\
a+b=c
\end{gather} %这种只是居中对齐

\begin{align}
a+b &=c & a+b &=c \\
a+b &=c & a+b &=c
\end{align}
\begin{align}
& a+b+c
={}& a+b+c
={}& a+b+c
\end{align} %以&后关系符对齐

LaTex 块公式🤏

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
\begin{equation*}
\begin{cases}
a+b &=c & a+b &=c \\
a+b &=c & a+b &=c
\end{cases}
\end{equation*}%左大括号

\begin{equation*}
\begin{numcase}
a+b &=c & a+b &=c \\
a+b &=c & a+b &=c
\end{numcase}
\end{equation*}%对每行编号,需要cases宏包

\begin{equation*}
\begin{aligned}
a+b &=c & a+b &=c \\
a+b &=c & a+b &=c
\end{aligned}
\end{equation*}%左大括号

\begin{equation*}
\begin{gathered}
a+b=c \\
a+b+c
\end{gathered}
\end{equation*}%左大括号

LaTex矩阵

矩阵的LaTex基本表示方法