我如何使用 tabularx 根据数字而不是单元格中的所有符号将下表中的列居中。目前它是根据星号居中的,但我想仅根据数字居中。
\documentclass{article}
\usepackage[flushleft]{threeparttable}
\usepackage{tabularx}
\newcolumntype{Y}{>{\centering\arraybackslash}X}
\begin{document}
\begin{table}[!htb]
\caption{Example table}
\footnotesize
\centering
\begin{threeparttable}
\begin{tabularx}{\linewidth}{lYYY} \hline \hline
& & & \\
& (1) & (2) & (3) \\
& & & \\
& \multicolumn{3}{c}{Example Panel} \\ \cline{2-4}
Coefficient & -10 & -211** & 260*** \\
Standard Error & (414) & (110) & (90) \\
Observations & 123,370 & 32,268 & 73,102 \\
Variation & 0.08 & 0.08 & 0.06 \\
Statistics & 13,115 & 12,826 & 14,031 \\
& & & \\
\hline \hline
\end{tabularx}
\begin{tablenotes}
\fontsize{9pt}{9pt}\selectfont
\item
\textit{Notes:}
Some table notes
\end{tablenotes}
\end{threeparttable}
\end{table}
\end{document}
答案1
您在这里是tabular*
而不是tabularx
。
我目测***的宽度大约是四倍。星号排版在零宽度框中。
使用了一个肮脏的技巧来使减号正确(条目被排版为数学)并且将逗号作为普通的数学符号。
还要注意caption
在标题和表格之间应用适当的间距;默认article
是放置标题以下表。
\documentclass{article}
\usepackage[flushleft]{threeparttable}
\usepackage{booktabs,array,caption}
\newcommand{\st}[1]{\makebox[0pt][l]{#1}}
\newcommand{\decimalcomma}{\mathcode`,=\inteval{\mathcode`,-"6000}}
\begin{document}
\begin{table}[!htbp]
\centering
\caption{Example table}
\begin{threeparttable}
\begin{tabular*}{\textwidth}{
@{\extracolsep{\fill}}
l
*{3}{>{$\decimalcomma}c<{$}}
@{\quad}}
\toprule
& \multicolumn{3}{c}{Example Panel} \\
\cmidrule(l){2-4}
& (1) & (2) & (3) \\
\midrule
Coefficient & -10 & -211\st{**} & 260\st{***} \\
Standard Error & (414) & (110) & (90) \\
Observations & 123,370 & 32,268 & 73,102 \\
Variation & 0.08 & 0.08 & 0.06 \\
Statistics & 13,115 & 12,826 & 14,031 \\
\bottomrule
\end{tabular*}
\begin{tablenotes}
\small
\item \textit{Notes:} Some table notes
\end{tablenotes}
\end{threeparttable}
\end{table}
\end{document}
我删除了双重规则和空行。我还交换了前两行,因为“示例面板”比 (1)、(2) 和 (3) 处于更高的级别。
如果您还希望减号不参与居中,而只输入*
而不是\st{*}
,那么您可以这样做。但如果这并不总是有效,请不要责怪我。
\documentclass{article}
\usepackage[flushleft]{threeparttable}
\usepackage{booktabs,array,caption}
\newcommand{\st}[1]{\makebox[0pt][l]{#1}}
\newcommand{\decimalcomma}{\mathcode`,=\inteval{\mathcode`,-"6000}}
\newcommand{\zerowidthminus}{%
\mathchardef\standardminus=\mathcode`-
\begingroup\lccode`~=`-\lowercase{\endgroup\def~}{\llap{$\standardminus$}}%
\mathcode`-="8000
}
\newcommand{\noteasterisk}{%
\begingroup\lccode`~=`*\lowercase{\endgroup\let~}\zwast
\mathcode`*="8000
}
\newcommand{\zwast}{\hbox to 0pt\bgroup*\checkast}
\newcommand{\checkast}[1]{*\futurelet\next\checkastaux}
\newcommand{\checkastaux}{%
\ifx\next*%
\expandafter\checkast
\else
\expandafter\hss\expandafter\egroup
\fi
}
\newcolumntype{N}{>{$\decimalcomma\zerowidthminus\noteasterisk}c<{$}}
\begin{document}
\begin{table}[!htbp]
\centering
\caption{Example table}
\begin{threeparttable}
\begin{tabular*}{\textwidth}{
@{\extracolsep{\fill}}
l
*{3}{N}
@{\quad}
}
\toprule
& \multicolumn{3}{c@{\quad}}{Example Panel} \\
\cmidrule(l){2-4}
& (1) & (2) & (3) \\
\midrule
Coefficient & -10 & -211** & 260***\\
Standard Error & (414) & (110) & (90) \\
Observations & 123,370 & 32,268 & 73,102 \\
Variation & 0.08 & 0.08 & 0.06 \\
Statistics & 13,115 & 12,826 & 14,031 \\
\bottomrule
\end{tabular*}
\begin{tablenotes}
\small
\item \textit{Notes:} Some table notes
\end{tablenotes}
\end{threeparttable}
\end{table}
\end{document}
唯一“非自动”的部分是测量星号的数量及其在最后一列中的位置,这样它们就不会超出表格。如果没有,@{\quad}
你会得到
答案2
如果你想坚持表格型设置,实现格式化目标的一种方法是使用宏\rlap
——或者它的数学模式表亲\mathrlap
(由数学工具包装)——分别包装**
和***
。
由于您仅对三部分表机器(例如,没有\tnote
指令),我会threeparttable
完全放弃环境。我会用 、 和 指令替换指令和\hline\hline
多个空行,这些是\toprule
\cmidrule
\bottomrule
书签包装。最后,不需要\footnotesize
材料tabularx
。
\documentclass{article}
\usepackage{tabularx} % for 'tabularx' env. and 'X' col. type
\newcolumntype{Y}{>{\centering\arraybackslash}X} % centered version of 'X'
\newcolumntype{Z}{>{$}Y<{$}} % automatic math mode
\usepackage{booktabs} % for well-spaced horizontal rules
\usepackage{mathtools} % for '\mathrlap' macro
\usepackage{icomma} % no special treatment of ',' in math mode
\begin{document}
\begin{table}[!htb]
\caption{Example table}
\smallskip
\begin{tabularx}{\linewidth}{@{} l ZZZ @{}}
\toprule
& (1) & (2) & (3) \\[1ex]
& \multicolumn{3}{c@{}}{Example Panel} \\
\cmidrule(l){2-4}
Coefficient & -10 & -211\mathrlap{^{**}} & 260\mathrlap{^{***}} \\
Standard Error & (414) & (110) & (90) \\
Observations & 123,370 & 32,268 & 73,102 \\
Variation & 0.08 & 0.08 & 0.06 \\
Statistics & 13,115 & 12,826 & 14,031 \\
\bottomrule
\end{tabularx}
\smallskip\small
\textit{Notes:} Some stuff \dots
\end{table}
\end{document}