将表格中空行的行高设置为0

将表格中空行的行高设置为0

我使用一些可以生成 latex 表格的软件。有时整行都是空的,只包含& & & \\。我希望这些行不占用空间,但不能更改这些行中的任何代码。

有没有办法让行高依赖于内容,以便这些行消失?

这里有一个小小的 MWE:

\documentclass{article}
\begin{document}
\begin{tabular}{ll}
  First & row \\
  Second & row \\
  & \\
  Fourth & row to follow immediately, since the third was empty \\
  \shortstack{Fifth \\ row} & seems to adjust just fine as it is larger
\end{tabular}
\end{document}

相关内容