我想創建一個這樣的表:
這是代碼:
\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 和標題包。我面臨的一些問題如下:
- 儘管我將表 7 設為粗體,但它沒有大寫,也沒有在單獨的行上
- 我的表中有很多空格,因此在輸出中看不到完整的表。如何減少列之間的間距?
- 我在標題和頂部規則以及註釋和底部規則之間留有空間。如何重新定義空間距離。我知道我可以使用 vspace,但我想重新定義 space 選項。謝謝。
答案1
這是一個(希望)幾乎完整的解決方案,其中包括定義新的 display
標題樣式,並加載makecell
(允許在單元格中使用\\
),siunitx
根據 S
列類型垂直對齊小數標記,更有趣的是,microtype
有一些字母標題中的間距。
不過,結果並不完美,因為括號的位置不是很好——我必須在其中一個單元格中進行手動更正,但我認為這是可以接受的。
\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 套件。問題中的程式碼已更新以反映相同的情況。
仍在與其他問題作鬥爭。