答案1
到目前为止,对用括号括起来的 2 行矩阵进行排版的最直接方法是使用环境pmatrix
。也可以使用array
环境来完成,但工作量会更大一些。我不会使用tabular
环境,因为当前数组的内容看起来是数学材料,而不是文本材料。
\documentclass{article}
\usepackage{amsmath} % for 'pmatrix' and 'align*' environments
\begin{document}
\begin{align*}
\sigma
&= \begin{pmatrix}
1 & 2 & 3 & 4 \\
5 & 6 & 7 & 8
\end{pmatrix} \\
%% '@{\mkern1mu}' reduces the amount of whitespace to left and right of array
&= \left( \begin{array}{@{\mkern1mu}cccc@{\mkern1mu}}
1 & 2 & 3 & 4 \\
5 & 6 & 7 & 8
\end{array} \right)
\end{align*}
\end{document}