双方括号

双方括号

我需要在同一方程线上有 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}

相关内容