I wrote a table like in the following MWE, using tabularray:
\documentclass[11pt]{article}
\usepackage{tabularray}
\begin{document}
\begin{table}[ht]
\centering
\begin{tblr}{
hlines,
vlines,
hline{1,2,Z}={2pt},
vline{1,2,Z}={2pt},
hline{3}={1}{2pt},
vline{3}={1}{2pt}
}
Alpha & Beta & Gamma \\
Epsilon & Zeta & Eta \\
Iota & Kappa & Lambda \\
\end{tblr}
\end{table}
\end{document}
with the following result:
As you can see, the thick horizontal and vertical lines aren't aligned with the thin ones. I would want the thin lines to come out of the center of the thick lines. How do I do that?


tabularray, see https://github.com/lvjr/tabularray/issues/350. – muzimuzhi Z Mar 09 '24 at 16:23