调整 Latex 表中的列大小

调整 Latex 表中的列大小

我正在使用下面的代码来获取一个简单的表格,但我需要调整每列的宽度。

\begin{table}[H]
\centerline{
\begin{tabular}{|c|c|}
\hline
\textbf{Group} & \textbf{Count} \\ \hline
1 & 1030 \\ \hline
2 & 425 \\ \hline
3 & 274 \\ \hline
4 & 109 \\ \hline
\end{tabular}
}
\end{table}

我尝试使用如下所示的表格*,但出现很多错误

\begin{table}[H]
\centerline{
\begin{tabular*}{.5\linewidth}{@{\extracolsep{\fill}}{|c|c|}}
\hline
\textbf{Group} & \textbf{Count} \\ \hline
1 & 1030 \\ \hline
2 & 425 \\ \hline
3 & 274 \\ \hline
4 & 109 \\ \hline
\end{tabular*}
}
\end{table}

答案1

您可以使用列类型来调整列的宽度p

\begin{tabular}{p{2in}p{1in}}

array包还提供一些可控宽度的列类型,以及定义您自己的列类型的能力。

相关内容