如何在表格环境周围添加普通括号或创建类似的效果?

如何在表格环境周围添加普通括号或创建类似的效果?

我想模仿这种布局:

在此处输入图片描述

但我无法访问源代码。我最好的猜测是,这是一个用括号括起来的表格环境。

答案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}

答案2

一个简单的方法可能是:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

$\sigma = \begin{pmatrix} 
1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9\\ 
3 & 8 & 9 & 5 & 2 & 1 & 6 & 4 & 7
\end{pmatrix} $

\end{document}

在此处输入图片描述

相关内容