答案1
这里报告了类似的问题:https://github.com/lvjr/tabularray/issues/141
以下是一个快速解决方法:
\documentclass{IEEEtran}
\usepackage{tabularray}
\begin{document}
\begin{table}
\begin{tblr}{
colspec={c|c|c},
rowspec={||Q|Q|Q||},
cell{2}{1} = {r=2}{c}, % multirow
vline{2} = {1}{-}{belowpos=0}, % workaround
}
A & B & C \\
A & B1 & C1 \\
& B2 & C2 \\
\end{tblr}
\end{table}
\end{document}