I have a tabularray table with custom hlines. I would like to remove just one of the horizontal lines, but I’m not sure how to do it. I’ve tried using the \SetRow{}
and \hline[]
commands with different parameters, but with no luck. So in the simplified example below, I would like to remove the line between the “b b” and “c c” rows.
xxxxxxxxxx
\documentclass{article}
\usepackage{tabularray}
\begin{document}
\begin{tblr}{hlines={2pt}}
a & a \\
b & b \\
c & c
\end{tblr}
\end{document}