对于以下内容,为什么我觉得这些数字有点多于它们应该位于非常精确的垂直中心吗?
另一方面,应该写什么内容才能使其上方和下方有相等的空间以确保垂直居中正确工作?
\documentclass{article}
\usepackage{xcolor}
\usepackage{tabularray}
\UseTblrLibrary{booktabs}
\begin{document}
\begin{tblr}
{
rows = {m},
rulesep=0pt,
width = 0.5\linewidth,
colspec = {X X},
row{odd} = {blue!15},
row{even} = {gray!15},
rowhead = 1,
row{1} = {red!20},
}
\toprule[1.5pt]
0 & 2 \\
TEXT & 4 \\
8 & 6 \\
text & 8 \\
\bottomrule[1.5pt]
\end{tblr}
\end{document}