如何将文本置于数组的多列中央?

如何将文本置于数组的多列中央?

我想获得文本图形系统位于阵列的中心。

我怎样才能将文本置于数组的多列中央,比如这里有四列?

\documentclass[english]{article}
\usepackage{amsmath}

\usepackage{babel}
\begin{document}
$\begin{array}{|c|ccccc|}
\hline \text{} & \text{System of Figure } &  &  &  & \\
\hline \text{sets} & \{1,2\}^{*} & \{1,3\} & \{1,2,33\} &  & \\
\text{cuts} & \{1\}^{*} & \{2,3\} & \{1,22\} & \{1,3\} & \{1,22,3\}
\\\hline \end{array}$ 
\end{document}

在此处输入图片描述

答案1

\documentclass[english]{article}
\usepackage{amsmath}

\usepackage{babel}
\begin{document}
$\begin{array}{|c|ccccc|}
\hline \text{} & \multicolumn{5}{c|}{\text{System of Figure }}  \\
\hline \text{sets} & \{1,2\}^{*} & \{1,3\} & \{1,2,33\} &  & \\
\text{cuts} & \{1\}^{*} & \{2,3\} & \{1,22\} & \{1,3\} & \{1,22,3\}
\\\hline \end{array}$
\end{document}

输出

在此处输入图片描述

相关内容