如何在表格单元格内添加新行(换行符)?我不知道该怎么做。我没有使用 lyx 或任何特殊软件,只使用 MacTex 和 texmaker。
答案1
单元格需要具有段落样式:通过p{<len>}
列规范,或使用\parbox
。
\documentclass{article}
\begin{document}
\begin{tabular}{ll}
Some text & Some more text \\
\parbox[t]{3in}{Here is some lengthy text \par with a break\strut} &
Some more text \\
Some text & Some more text
\end{tabular}
\bigskip
\begin{tabular}{p{3in}l}
Some text & Some more text \\
Here is some lengthy text \par with a break\strut &
Some more text \\
Some text & Some more text
\end{tabular}
\end{document}
单独使用\\
不会有帮助,因为 this 在 a 内部重新定义tabular
以定义新行。当然,根据上下文,也可以使用
\begin{tabular}{ll}
Some text & Some more text \\
Here is some lengthy text & Some more text \\
with a break \\
Some text & Some more text
\end{tabular}
它类似于其中一个单元格中的换行符。