lvjr / tabularray

Typeset tabulars and arrays with LaTeX3
https://ctan.org/pkg/tabularray
247 stars 22 forks source link

SetCell double blank line bug? #282

Open FruitSausage opened 1 year ago

FruitSausage commented 1 year ago

\SetCell no longer works if it is preceded by 2 blank lines - is this a bug? For example with:

\begin{longtblr}{
   colspec = {|c|c|c|},
}
   \SetCell[c=3]{l} Alpha & & \\
   \SetCell[c=3]{l} Beta & & \\

   \SetCell[c=3]{l} Gamma & & \\
\end{longtblr}

"Gamma" no longer spans 3 columns, compared with:

\begin{longtblr}{
   colspec = {|c|c|c|},
}
   \SetCell[c=3]{l} Alpha & & \\
   \SetCell[c=3]{l} Beta & & \\
   \SetCell[c=3]{l} Gamma & & \\
\end{longtblr}
lvjr commented 1 year ago

Single blank line is OK. Is it neccessary to make tabularray support the usage of double blank lines inside the contents of tables? Maybe we can wait for the comments of other users first.