我需要在同一方程线上有 2 个方括号矩阵。我可以用\xi
下面的方法只对单个方括号矩阵 (for )进行操作
\xi = \left[ \begin{array}{c}
\xi^1 \\
\vdots \\
\xi^L
\end{array} \right]
有人可以提示我如何添加第二个方括号矩阵(对于x
)吗?
答案1
amsmath
每当需要排版数学时,强烈建议使用它
\documentclass{minimal}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\xi = \begin{bmatrix}
\xi^1 \\
\vdots \\
\xi^L
\end{bmatrix}
\qquad
\mathbf{x} = \begin{bmatrix}
x^1 \\
\vdots \\
x^L
\end{bmatrix}
\end{equation}
\end{document}
答案2
\documentclass{article}
\begin{document}
\begin{equation}
\xi = \left[ \begin{array}{c}
\xi^1 \\
\vdots \\
\xi^L
\end{array} \right];
\qquad
\mathbf{x} = \left[ \begin{array}{c}
x^1 \\
\vdots \\
x^L
\end{array} \right]
\end{equation}
\end{document}