如何根据内容自动调整列大小

如何根据内容自动调整列大小

我使用这个代码:

\begin{table}[H]
\caption{Offsets 2}
\centering
\begin{tabular}{*{6}{|c}}
\hline\hline
\rowcolor{orange}
student status  &  location type  & outside region & approved outside area (ha) & delivery agent\\ \hline \hline
Current         &  Restoration    & Northwest john Province & 476.0 & 
If the position ... \\ \hline
\end{tabular}
\label{table:nonlin}
\end{table}

但是表格超出了页面范围。有什么方法可以让页面不超出页面范围,并根据内容缩小以适合页面大小吗?

答案1

是的,例如你可以改变

\begin{tabular}{*{6}{|c}}

\begin{tabular}{*{6}{|p{2cm}}}

当然,2cm这只是宽度的一个例子。这给出了一个段落,因此条目永远不会(嗯,很少)太长。

相关内容