答案1
\rule
插入适当长度(高度)的垂直支柱(零宽度):
\documentclass{article}
\begin{document}
\begin{tabular}{ | c | c | }
\hline
Tally of pink beads & Tally of blue beads \\
\hline
\vspace{.5in} & \\
\hline
\end{tabular}
\bigskip
\begin{tabular}{ | c | c | }
\hline
Tally of pink beads & Tally of blue beads \\
\hline
\rule{0pt}{.5in} & \\
\hline
\end{tabular}
\end{document}
在您的设置中(使用\vspace
)中插入垂直空间后\\
当该行的垂直规则已插入时,换行符。因此,\rule
在行内设置零宽度可使 TeX 保持水平模式,从而允许垂直规则延伸到整个行的高度。