答案1
有\parbox
作用吗?
\begin{tabular}{ll}
one line& \parbox[t]{5cm}{another\\column}\\
second line here& and here
\end{tabular}
答案2
\newline
在段落栏中工作
例子:
\begin{tabular}{|p{3cm}|p{3cm}|}
first line
\newline second line & still on first line \\
\end{tabular}
答案3
这是针对单个单元格,还是针对整列单元格?如果是后者,请尝试:
\documentclass{article}
\begin{document}
\begin{tabular}{lp{.2\textwidth}l}
42 & A paragraph of text & 42\\
42 & Another paragraph & 42
\end{tabular}
\end{document}
即使对于单个细胞来说,我认为这仍然是可行的方法。
答案4
\usepackage{pbox}
\begin{tabular}{|l|l|} \hline
\pbox{20cm}{This is the first \\ cell} & second \\ \hline
3rd & and the last cell \\ \hline
\end{tabular}