次のような表を作成したいと思います。
コードは次のとおりです:
\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}
私は booktabs と caption パッケージを使用しています。私が直面している問題のいくつかは次のとおりです。
- 表7は太字になっていますが、大文字ではなく、別の行にもありません
- 表にスペースがたくさんあるため、出力で表全体を表示できません。列間のスペースを減らすにはどうすればよいですか?
- キャプションとトップルール、ノートとボトムルールの間にスペースがあります。スペースの距離を再定義するにはどうすればよいでしょうか。vspace を使用できることはわかっていますが、スペース オプションを再定義したいと思います。よろしくお願いします。
答え1
ここでは、(うまくいけば)ほぼ完全なソリューションが紹介されています。これは、新しい display
キャプション スタイルを定義し、ロードしてmakecell
(セル内での使用を許可して\\
)、列タイプsiunitx
に応じて小数点マーカーを垂直に揃え S
、さらに逸話的に、microtype
キャプションに文字間隔を設けるというものです。
ただし、括弧の位置が適切ではないため、結果は完璧ではありません。セルの 1 つを手動で修正する必要がありましたが、許容範囲内だと思います。
\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}
答え2
次のようにキャプション パッケージをロードすることで、希望どおりのキャプションを取得できました。
\usepackage[bf,tablename=TABLE,labelsep=newline,aboveskip=0pt]{caption}
ここで、bf はラベル「Table」を太字にし、tablename = TABLE はデフォルトのラベルを TABLE に変更し、labelsep=newline は新しい行でキャプションを開始し、aboveskip=0pt はキャプションと topmargin の間の距離を縮小します。
テーブルの下にメモを生成するために、パッケージ threeparttable を使用しました。質問のコードは、同じことを反映するように更新されました。
まだ他の問題にも苦労しています。