Como eu poderia centralizar as colunas da tabela a seguir usando tabularx com base em números e não em todos os símbolos de uma célula. No momento está centralizado levando em consideração as estrelas, mas gostaria de centralizar apenas com base em números.
\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}
Responder1
Aqui está você com, tabular*
em vez de tabularx
.
Eu avaliei a olho nu que a largura de *** é cerca de um quádruplo. Os asteriscos são compostos em uma caixa de largura zero.
Um truque sujo é usado para acertar o sinal de menos (as entradas são escritas como matemática) e a vírgula ser um símbolo matemático comum.
Observe também o uso de caption
espaçamento adequado entre a legenda e a tabela; o padrão article
é colocar legendasabaixotabelas.
\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}
Removi regras duplas e linhas vazias. Também troquei as duas primeiras linhas, porque “Example Panel” está em um nível superior a (1), (2) e (3).
Se você também quiser que o sinal de menos não participe da centralização e apenas insira *
em vez de \st{*}
, você pode. Mas não me culpe se isso nem sempre funcionar.
\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}
A única parte “não automática” é medir o número de asteriscos e sua posição na última coluna, para que não fiquem fora da tabela. Sem @{\quad}
você conseguiria
Responder2
Se você quiser ficar com otabularxconfiguração, uma maneira de atingir seu objetivo de formatação seria usar a \rlap
macro - ou seu primo no modo matemático \mathrlap
(fornecido peloferramentas matemáticaspacote) - para encapsular **
e ***
, respectivamente.
Como você faz apenas um uso altamente rudimentar dos recursos domesa de três partesmáquinas (por exemplo, sem \tnote
diretivas), eu abandonaria threeparttable
totalmente o meio ambiente. E eu substituiria as \hline\hline
diretivas e várias linhas em branco por \toprule
, \cmidrule
e \bottomrule
instruções, que são macros fornecidas peloguias de livrospacote. Finalmente, não há necessidade de \footnotesize
material 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}