表格中缺少垂直空格

表格中缺少垂直空格

请考虑以下 MWE:

\documentclass{article}
\usepackage{tabulary}

\begin{document}

\begin{tabulary}{5cm}{rL}   
    A & B\\[5cm]
    A & B\\
\end{tabulary}

\end{document} 

以前(使用 array.sty v2.4d)这会导致两行之间的空间增加,但使用 array.sty v2.4h 时不会插入任何空间。

有什么方法可以恢复以前的行为吗?

答案1

根据聊天信息https://chat.stackexchange.com/transcript/message/46198018#46198018

您可以使用以下解决方法:

\documentclass{article}
\usepackage{tabulary}

\begin{document}

\begin{tabulary}{5cm}{rL}   
    A & B\\ \noalign{\vspace{2cm}} 
    A & B\\
\end{tabulary}

\end{document} 

相关内容