我正在处理 LaTeX 表和 R,但是遇到一些有关列宽和对齐的问题。
cat("\\centering","\n")
cat("\\rowcolors{2}{burlywood1}{white}","\n")
cat("\\begin{tabular}{>{\\rule{0pt}{.5cm}}>{\\arraybackslash}m{2.25 cm}>{\\arraybackslash}m{2.25cm}c>{\\arraybackslash}m{7.5cm}c>{\\arraybackslash}m{2cm}c}","\n")
#cat("\\hline","\n")
cat("\\rowcolor{goldenpoppy} \\textbf{Col1} &\\textbf{Col2} &\\textbf{Col3} &\\textbf{Col4} &\\textbf{Col5}\\\\","\n")
cat("\\hline","\n")
在上面的例子中Col1
, 是底部对齐的,而其他的、 和Col2
是Col3
顶部对齐的。另外,如何保持列宽固定?Col4
Col5
答案1
m
列表示垂直居中,如果要在每个单元格顶线的基线上对齐,请使用p
不m
。