保持表格中空行的高度

保持表格中空行的高度

我想绘制一个表格框架,其中的一些文本水平和垂直居中对齐,我使用了tblr包环境tabularray,它满足了我的大部分需求,除了空行高度,我想让空行与文本行共享相同的高度,但我搞不懂。这是我使用的代码:

\documentclass{article}
\usepackage{tabularray}


\begin{document}
\noindent
\begin{tblr}{
  colspec = {X[c,m]X[c,m]X[c,m]X[c,m]X[c,m]},
  stretch = 0,
  rowsep = 6pt,
  hlines = {0.5pt},
  vlines = {0.5pt},
}
      Name & Position & Unit & Sign & Notes \\
         &      &      &      & A1 \\
         &      &      &      & \\
         &      &      &      & \\
         &      &      &      & \\
         &      &      &      & \\
\end{tblr}
\end{document}

在此处输入图片描述

答案1

钥匙rows必须成为你的朋友......

\documentclass{article}

\usepackage{tabularray}


\begin{document}

\begin{tblr}{
  colspec = {X[c,m]X[c,m]X[c,m]X[c,m]X[c,m]},
  stretch = 0,
  rowsep  = 6pt,
  hlines  = {0.5pt},
  vlines  = {0.5pt},
  rows    = {ht = \baselineskip} % <-- In the doc...
}
  Name & Position & Unit & Sign & Notes \\
       &          &      &      & A1    \\
       &          &      &      &       \\
       &          &      &      &       \\
       &          &      &      &       \\
       &          &      &      &       \\
\end{tblr}

\end{document}

在此处输入图片描述

相关内容