标签:插入 begin 排版 一个 matrix 使用 src tail 链接
矩阵格式有三种:
使用 {\begin{matrix}…\end{matrix}} 来生成矩阵,其中 matrix 是 Latex 的矩阵命令,矩阵命令中每一行以 \\ 结束,矩阵的元素之间用 & 来分割开
$$ \begin{matrix} 1 & 2 & 3 \ 4 & 5 & 6 \ 7 & 8 & 9 \end{matrix} \tag{1} $$
$$
\begin{matrix}
1 & 2 & 3 \\
4 & 5 & 6 \\
7 & 8 & 9
\end{matrix} \tag{1}
$$
$$ A= \begin{bmatrix} 1 & 2 & 3 \ 4 & 5 & 6 \ 7 & 8 & 9 \end{bmatrix} \tag{2} $$
$$
A=
\begin{bmatrix}
1 & 2 & 3 \\
4 & 5 & 6 \\
7 & 8 & 9
\end{bmatrix} \tag{2}
$$
$$ A= \begin{Bmatrix} 1 & 2 & 3 \ 4 & 5 & 6 \ 7 & 8 & 9 \end{Bmatrix} \tag{3} $$
$$
A=
\begin{Bmatrix}
1 & 2 & 3 \\
4 & 5 & 6 \\
7 & 8 & 9
\end{Bmatrix} \tag{3}
$$
分段函数写法:\begin{cases}...\end{cases} 来生成分段函数
$$k_j=\begin{cases} 1 & knet_j=max\left\{knet_1,knet_2,\cdots,knet_h\right\}\0 & 其他\\end{cases}$$
$$k_j=\begin{cases}
1 & knet_j=max\left\{knet_1,knet_2,\cdots,knet_h\right\}\\
0 & 其他\\
\end{cases}\tag{4}$$
$$\begin{aligned} b_0+ \cfrac{a_1}{b_1 + \cfrac{a_2}{b_2 + \cfrac{a_3}{b_3 + \ddots \cfrac{a_n}{b_n}}}} \end{aligned}$$
$$\begin{aligned}
b_0+
\cfrac{a_1}{b_1 +
\cfrac{a_2}{b_2 +
\cfrac{a_3}{b_3 +
\ddots
\cfrac{a_n}{b_n}}}}
\end{aligned}\tag{5}$$
如果你的等式需要写多步,将等号对齐会好看的多。& 用于对其等号等符号,以编排格式(&本来是用来分割单元的,但系统会自动将&分割出的列自动排版)。
$$ \begin{aligned} knet_j & =XW_j\&=(x_1,x_2,\cdots,x_n){(w_{1j},w_{2j},\cdots,w_{nj})}^T\&=w_{1j}x_1+w_{2j}x_2+\cdots+w_{nj}x_n \end{aligned}$$
$$
\begin{aligned}
knet_j & =XW_j\\
&=(x_1,x_2,\cdots,x_n){(w_{1j},w_{2j},\cdots,w_{nj})}^T\\
&=w_{1j}x_1+w_{2j}x_2+\cdots+w_{nj}x_n
\end{aligned}\tag{6}$$
参考链接:
(1)https://blog.csdn.net/GloriousEzreal/article/details/80748658#_266
(2)https://blog.csdn.net/bennyfun79/article/details/15500575
标签:插入 begin 排版 一个 matrix 使用 src tail 链接
原文地址:https://www.cnblogs.com/lfri/p/10339964.html