Quero criar uma tabela assim:
Aqui está o código:
\begin{table}[h]
\begin{threeparttable}
\caption{\textit{Sample Selection}}
\centering
\begin{tabular}{lcccccccc}
\toprule\toprule
& (I) & (II) & (III) & (IV) & (V) & (VI) & (VII) & (VIII) \\
Variables & ADA Model & GCONCERN Model & MEET Model & LOGFEES Model & ADA Model & GCONCERN Model & MEET Model & LOGFEES Model\\\midrule
NLEAD & 0.000& -0.037& 0.0301& 0.006&&&& \\
& (0.15) & (-0.16) & (0.35) & (0.36) &&&& \\
CLEAD &&&& 0.000 &-0.038 & -0.098 & 0.020 \\
&&&& (0.22) & (-0.21) & (-0.92) & (1.43) \\
Observations & 75,188 & 6,077 & 11,165 & 24,279 & 23,306 & 3,856 & 5,632 & 16,388\\
Adjusted $R^2$ & 0.045 & 0.149 & 0.026 & 0.694 & 0.041 & 0.155 & 0.027 & 0.711\\
\bottomrule
\end{tabular}
\begin{tablenotes}
\small
\item This is where authors provide additional information about
the data, including whatever notes are needed.
\end{tablenotes}
\end{threeparttable}
\end{table}
Estou usando o pacote booktabs & caption. Alguns dos problemas que estou enfrentando estão abaixo:
- Mesmo que eu esteja em negrito, a Tabela 7, mas ela não está em maiúscula e nem em uma linha separada
- Tenho muitos espaços na minha tabela e, portanto, não consigo ver a tabela completa na saída. Como reduzo o espaçamento entre colunas?
- Estou recebendo espaço entre legenda e regra superior e nota e regra inferior. Como pode redefinir a distância do espaço. Sei que posso usar o vspace, mas quero redefinir a opção de espaço. Obrigado.
Responder1
Aqui está uma solução (espero) quase completa, que consiste em definir um novo display
estilo de legenda, e carregar makecell
(permite o uso de \\
em células), siunitx
para alinhar verticalmente os marcadores decimais graças ao S
tipo de coluna e, mais anedóticamente, microtype
ter alguma letra espaçamento na legenda.
O resultado, porém, não é perfeito, pois os parênteses não estão muito bem posicionados – tive que fazer uma correção manual em uma das células, mas acho aceitável.
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[lf, mathtabular]{MinionPro}
\usepackage[nomarginpar, textwidth = 15cm]{geometry}
\usepackage{array, threeparttable, booktabs, caption}
\usepackage{makecell}%
\usepackage{siunitx}%
\usepackage{microtype}
\DeclareCaptionFormat{display}{\textls*[250]{\bfseries\MakeUppercase{#1}}\\[0.8ex]#3}
\captionsetup{format=display, skip =-0.2ex}
\begin{document}
\setcounter{table}{6}
\begin{table}[h]
\centering\small%\renewcommand{\tabcolsep}{5pt}
\begin{threeparttable}
\caption{\textit{Sample Selection}}
%
\sisetup{table-figures-integer =1,table-figures-decimal =3, table-number-alignment=center, %
table-align-text-pre=false,table-align-text-post=false,table-space-text-pre={(}, table-space-text-post={)}}%, parse-numbers=false
\begin{tabular}{@{}l*{8}{S}@{}}
\toprule\toprule%
Variables & {\thead{(I)\\\emph{ADA}\\Model (1.43)}} &{\thead{(II)\\\emph{GCONCERN}\\Model}} & {\thead{(III)\\\emph{MEET}\\Model}} & {\thead{(IV)\\\emph{LOGFEES}\\Model}} & {\thead{(V)\\\emph{ADA}\\Model}} & {\thead{(VI)\\\emph{GCONCERN}\\Model}} & {\thead{(VII)\\\emph{MEET}\\Model}} & {\thead{(VIII)\\\emph{LOGFEES}\\Model}}\\
\midrule
\addlinespace
\emph{NLEAD} & 0.000 & -0.037 & 0.0301 & 0.006 & & & & \\%
&{(}0.15{)} & {(}-0.16{)}& {(}0.35{)} & {(}0.36{)} & & & & \\%
\addlinespace
\emph{CLEAD} & & & & & 0.000 & -0.038 & -0.098 & 0.020 \\
& & & & & {(}0.22{)} & {(}0.21{)} & {(}0.92{)} & {(\kern -0.025em}1.43{)} \\
\addlinespace
Observations & {75,188}&{6,077} & {11,165} & {24,279} & {23,306} & {3,856} & {5,632} & {16,388}\\
\addlinespace
Adjusted $R²$ & 0.045 & 0.149 & 0.026 & 0.694 & 0.041 & 0.155 & 0.027 & 0.711\\%
\addlinespace
\bottomrule
\end{tabular}
%
\begin{tablenotes}
\small
\item This is where authors provide additional information about
the data, including whatever notes are needed.
\end{tablenotes}
\end{threeparttable}
\end{table}
\end{document}
Responder2
Consegui obter a legenda como desejava carregando o pacote de legenda da seguinte maneira:
\usepackage[bf,tablename=TABLE,labelsep=newline,aboveskip=0pt]{caption}
Aqui bf torna o rótulo "Tabela" em negrito, tablename = TABLE altera o rótulo padrão para TABLE, rótulosep=newline inicia a legenda em uma nova linha e Aboveskip=0pt reduz a distância entre a legenda e a margem superior.
Para gerar uma nota embaixo da mesa usei o pacote threeparttable. O código na pergunta foi atualizado para refletir o mesmo.
Ainda lutando com outros problemas.