本文记录和总结了LaTex编写矩阵的一些要点,具体参考这位博主@半个冯博士的知乎文章如何用latex编写矩阵(包括各类复杂、大型矩阵)?
记录:
使用\begin{array} \end{array}
\begin{array}{c}
a & b \\
c & d
\end{array}
a b c d \begin{array}{c} a & b \\ c & d \end{array} acbd
要自己加括号 推荐用\left[ \right]
进行括号的自适应
\left[\begin{array}{c}
a & b \\
c & d
\end{array}\right]
[ a b c d ] \left[\begin{array}{c} a & b \\ c & d \end{array}\right] [acbd]
使用\begin{pmatrix} \end{pmatrix}
\begin{pmatrix}
a & b \\
c & d
\end{pmatrix}
( a b c d ) \begin{pmatrix} a & b \\ c & d \end{pmatrix} (acbd)
使用\begin{bmatrix} \end{bmatrix}
\begin{bmatrix}
a & b \\
c & d
\end{bmatrix}
[ a b c d ] \begin{bmatrix} a & b \\ c & d \end{bmatrix} [acbd]
使用\begin{Bmatrix} \end{Bmatrix}
\begin{Bmatrix}
a & b \\
c & d
\end{Bmatrix}
{ a b c d } \begin{Bmatrix} a & b \\ c & d \end{Bmatrix} {acbd}
使用\begin{vmatrix} \end{vmatrix}
\begin{vmatrix}
a & b \\
c & d
\end{vmatrix}
∣ a b c d ∣ \begin{vmatrix} a & b \\ c & d \end{vmatrix} ∣∣∣∣acbd∣∣∣∣
使用\begin{Vmatrix} \end{Vmatrix}
\begin{Vmatrix}
a & b \\
c & d
\end{Vmatrix}
∥ a b c d ∥ \begin{Vmatrix} a & b \\ c & d \end{Vmatrix} ∥∥∥∥acbd∥∥∥∥
使用\begin{array} \end{array}
使用{c|c}
使用{c:c}
使用\hline
使用\hdashline
\left[\begin{array}{c|c:c}
a & b & c\\
\hline c & d & e\\
\hdashline 1 & 2 & 3
\end{array}\right]
使用\cdots
使用\vdots
使用\ddots
\begin{array}{ccc}
a & \cdots & c\\
\vdots & \ddots & \vdots\\
d & \cdots & b
\end{array}
a ⋯ c ⋮ ⋱ ⋮ d ⋯ b \begin{array}{ccc} a & \cdots & c\\ \vdots & \ddots & \vdots\\ d & \cdots & b \end{array} a⋮d⋯⋱⋯c⋮b
这样基本就够用了。
文章还介绍了一些花里胡哨的矩阵?可能以后有用吧,截个图放在这里。不得不说LaTex的功能还真是强大。
这里只是做简单的记录,要详细了解上面的命令还是参考如何用latex编写矩阵(包括各类复杂、大型矩阵)?,有gif演示,非常的生动,日常写公式笔记呀可以多多参考。
只有多写才会记得牢。