lvjr / tabularray

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

Unable to modify rowsep in longtblr #279

Closed FruitSausage closed 1 year ago

FruitSausage commented 1 year ago

Regular tblr rowsep can be reduced with for example:

\SetTblrInner{rowsep=0pt}
\begin{tblr}{lr}
a & b \\
c & d \\
\end{tblr}

But this does not work for longtblr:

\SetTblrInner{rowsep=0pt}
\begin{longtblr}{lr}
a & b \\
c & d \\
\end{longtblr}

Is there an alternative way?

lvjr commented 1 year ago

You need to write

\SetTblrInner[longtblr]{rowsep=0pt}