介绍
我有一个表格元素列表,其中最后一列(第 3 列)的某些元素有时很长,超出了页面宽度。逐行查看并进行相应调整非常无聊。
例如我的表格中的一行可能是:
First column & second column & my long, way too long third column that overpass the width of the page.\\
以下是我解决这个问题的方法
First column & second column & my long, way too long third column\\
& & that overpass the width of the page.\\
问题
有没有办法将页面宽度(例如,指示页面是 A4)设置为整个表格,以便 LaTex 自动完成这一操作。我们最终可能必须指示我们是否希望换行符出现在单词中间,还是仅在空格处或仅在逗号后出现。
答案1
\begin{table}[ht]
\as{1.3}
\caption{xxxxxx}
\label{tabAtklst}
\centering
\begin{tabular}{l p{7cm}}
\toprule
\textbf{DoS} & \parbox[t]{7cm}{Your text here}}\\ \hline
\end{tabular}
\end{table}
这对我有用。