在 LaTeX 中创建格式良好的表格

在 LaTeX 中创建格式良好的表格

我正在尝试在我的工作论文中添加一个显示回归结果的独特表格。但是,我面临三个问题:i) 我无法在表格上方插入“因变量:y$_{it}”作为标题。

ii) 我正在努力包含有关 p 值的图例和文本“在此表中,我们展示了平均边际效应,并在括号内显示了稳健标准误差。所有回归模型都包括一整套年份虚拟变量”,就在表格下方。

iii) 桌子太宽,需要调整才能适合床单。

我的尝试如下

\documentclass[12pt,fleqn,a4paper]{article}
\usepackage{caption}
\usepackage{booktabs}
\usepackage{array}
\usepackage{amsmath}



\begin{document}



\begin{table}[htbp]
    \centering
    \caption{%
        Dependent Variable: y$_{it}$
    }
    \vspace{0.5em} 
    \begin{tabular}{ccccccc}
        \toprule
        \textbf{Variable} & \textbf{Model 1} & \textbf{Model 2} & \textbf{Model 3} & \textbf{Model 4} & \textbf{Model 5} & \textbf{Model 6}  \\
        \midrule
        k$_{it}$ & & & & & &    \\
        & & & & & & \\
        h$_{it}$ & & & & & &\\
        & & & & & & \\
        Americas & & & & & &\\
        & & & & & & \\
        East Asia and South Asia and Pacific & & & & & &       \\
        & & & & & &  \\
        Europe and Central Asia & & & & & & \\
        Middle East and  North Africa & & & & & &       \\
        & & & & & &  \\
        \midrule
        Sample  & & & & & &  \\
        N       & & & & & &\\
        McFaddenR$^{2}$     & & & & & & \\
        \bottomrule
        \addlinespace[1ex]
        \multicolumn{4}{l}{\textsuperscript{***}$p<0.01$, \textsuperscript{**}$p<0.05$, \textsuperscript{*}$p<0.1$. In this table, we present the average marginal effects, with robust standard errors displayed within parentheses. All the regression models include a full set of year dummies.}
        \label{probit1}
    \end{tabular}
\end{table}

\end{document}

答案1

要想让表格包含三个部分(标题、表格和注释),更好的选择是使用包threeparttable

c居中文本一条线,所以你有一个很大的桌子不合适。

尝试一下,但可能需要重新考虑这个表格;阅读建议这里

我使用了这个threeparttable包,将第一列改为p{}\(段落)列(文本向右偏移),并将字体大小减小到\footnotesize。但是,它仍然与标准文章宽度相差近 30 pt...(因此它没有正确居中在页面上)。

\documentclass[12pt,fleqn,a4paper]{article}
\usepackage{caption}
\usepackage{booktabs}
\usepackage{array}
\usepackage{amsmath}
\usepackage{threeparttable}
\usepackage{ragged2e}

\begin{document}
\begin{table}[htbp]
    \footnotesize
    \begin{threeparttable}[b]
        \caption{%
            Dependent Variable: $\mathrm{y}_{it}$
        }
        \label{probit1}
        \begin{tabular}{>{\RaggedRight}p{3cm}cccccc}
            \toprule
            \textbf{Variable} & \textbf{Model 1} & \textbf{Model 2} & \textbf{Model 3} & \textbf{Model 4} & \textbf{Model 5} & \textbf{Model 6}  \\
            \midrule
            $\mathrm{k}_{it}$ & & & & & &    \\
                     & & & & & & \\
            $\mathrm{h}_{it}$ & & & & & &\\
                     & & & & & & \\
            Americas & & & & & &\\
                     & & & & & & \\
            East Asia and South Asia and Pacific & & & & & &       \\
                                                 & & & & & &  \\
            Europe and Central Asia & & & & & & \\
                                    & & & & & &  \\
            Middle East and  North Africa & & & & & &       \\
                                          & & & & & &  \\
            \midrule
            Sample  & & & & & &  \\
            N       & & & & & &\\
            McFaddenR$^{2}$     & & & & & & \\
            \bottomrule
        \end{tabular}
        \begin{tablenotes}
            \item [] \textsuperscript{***}$p<0.01$, \textsuperscript{**}$p<0.05$, \textsuperscript{*}$p<0.1$. In this table, we present the average marginal effects, with robust standard errors displayed within parentheses. All the regression models include a full set of year dummies.
        \end{tablenotes}
    \end{threeparttable}
\end{table}

\end{document}

在此处输入图片描述

相关内容