表格模板帮助

表格模板帮助

我正在尝试在 latex 中制作类似的表格,但我找不到任何可以帮助我的好资源。我该如何编写代码,以便平均值和方差看起来像那样。任何帮助都值得感激

在此处输入图片描述

答案1

尝试此代码。希望它能有所帮助

\begin{table}[htbp]
  \centering
  \caption{Add caption}
    \begin{tabular}{llll}
    \hline
          &       & Parameter & Standard Error \bigstrut\\
    \hline
    \multirow{7}[2]{*}{Mean} & Const & 0.446 & 0.088 \bigstrut[t]\\
          & ED    & 0.0751 & 0.0063 \\
          & EX    & 0.0278 & 0.0041 \\
          & EX2   & -0.000332 & 0.00087 \\
          & FE    & -0.277 & 0.033 \\
          & NONWH & -0.138 & 0.053 \\
          & UNION & 0.224 & 0.036 \bigstrut[b]\\
    \hline
    \multirow{5}[2]{*}{Variance} & Const & -3.64 & 0.36 \bigstrut[t]\\
          & ED    & 0.0699 & 0.0254 \\
          & EX    & 0.0747 & 0.185 \\
          & EX2   & -0.00121 & 0.0004 \\
          & UNION & 0.0738 & 0.132 \bigstrut[b]\\
    \hline
    \end{tabular}%
  \label{tab:addlabel}%
\end{table}%

另外,将其添加到你的序言中

\usepackage{bigstrut}

答案2

由于第一列中的两个条目应相对于奇数行垂直居中,因此不需要\multirow。在下面的 MWE 中,我修改了上一个答案并且另外使用了包中的水平线booktabs以及包S中的类型列siunitx,以便将最后两列中的数字与小数点对齐:

在此处输入图片描述

\documentclass{article}
\usepackage{siunitx}
\usepackage{booktabs}
\begin{document}

\begin{table}[htbp]
  \centering
  \caption{Add caption}
  \sisetup{group-digits=false}
    \begin{tabular}{llS[table-format=-1.6] S[table-format=1.6]}
    \toprule
             &       & {Parameter} & {Standard Error} \\
    \midrule
             & Const & 0.446       & 0.088   \\
             & ED    & 0.0751      & 0.0063  \\
             & EX    & 0.0278      & 0.0041  \\
     Mean    & EX2   & -0.000332   & 0.00087 \\
             & FE    & -0.277      & 0.033   \\
             & NONWH & -0.138      & 0.053   \\
             & UNION & 0.224       & 0.036   \\
    \midrule
             & Const & -3.64       & 0.36    \\
             & ED    & 0.0699      & 0.0254  \\
    Variance & EX    & 0.0747      & 0.185   \\
             & EX2   & -0.00121    & 0.0004  \\
             & UNION & 0.0738      & 0.132   \\
    \bottomrule
    \end{tabular}%
  \label{tab:addlabel}%
\end{table}%


\end{document}

相关内容