我知道tabu,tabularx, 数组,等等,但似乎没有一个能对LaTeX 表格提示和技巧作者:Adrian P. Robson。引用:
此外,
p{}
m{}
和b{}
格式无法在同一个表中成功混合。
这正是我想要做的。从图形上来说,我想要的是:
如果使用,则前两列为p{}
's 或X
's表格型,最后一个应该垂直居中。
我正在寻找简单的解决方案,越少黑客行为越好。
答案1
合并禁忌和多行表现如你所愿:
\documentclass{article}
\usepackage{multirow,tabu}
\begin{document}
\begin{tabu}{|p{4cm}|p{4cm}|c|}
\hline
\multicolumn{3}{|l|}{Appearance(as appropriate for style)}\\
\multicolumn{3}{|l|}{Comment on color,clarity and head(retention,color and texture)}\\
\hline
Expected:Runs from copper to dark brown. Long-lasting,
dense, rocky white to ivory head. Clarity is poor to good,
haze not unexpected. Effervescent.
& Comments: & \multirow{1}{*}{/3}\\
\hline
\end{tabu}
\end{document}
这不仅适用于多行和正常表格。