答案1
这源于默认居中垂直对齐tabular
。
\strut
作为中间非 Foo 的一部分发出tabular
。这将确保有适当的基线来对接(垂直):\documentclass{article} \begin{document} Foo \begin{tabular}{l} Foo \end{tabular} \strut Foo \begin{tabular}{l} Foo \\ Foo \end{tabular} \end{document}
让第二个
tabular
与[t]
操作对齐:\documentclass{article} \begin{document} Foo \begin{tabular}{l} Foo \end{tabular} Foo \begin{tabular}[t]{l} Foo \\ Foo \end{tabular} \end{document}
在这两种情况下,都实现了预期的结果: