小编典典

如何在 LaTeX 表格中换行?

all

我正在用 LaTeX
创建一个包含几个表格的报告。我坚持这一点,因为表格中的单元格数据超出了页面的宽度。我可以以某种方式包装文本,使其落入表格同一单元格的下一行吗?

它与表格的宽度有某种关系吗?但是由于它超出了页面的宽度,它会有所作为吗?


阅读 330

收藏
2022-03-08

共1个答案

小编典典

使用 p{width} 作为列说明符,而不是 l/r/c。

\begin{tabular}{|p{1cm}|p{3cm}|}
  This text will be wrapped & Some more text \\
\end{tabular}

编辑:(基于评论)

\begin{table}[ht]
    \centering
    \begin{tabular}{p{0.35\linewidth} | p{0.6\linewidth}}
      Column 1  & Column2 \\ \hline
      This text will be wrapped & Some more text \\
      Some text here & This text maybe wrapped here if its tooooo long \\
    \end{tabular}
    \caption{Caption}
    \label{tab:my_label}
\end{table}

我们得到:

在此处输入图像描述

2022-03-08