文本宽度的表格

文本宽度的表格

当我想让表格适合文本宽度时,我使用以下代码:

\begin{table}[t]  
                \small
                \caption{Summary descriptive statistics}
                \label{tab1:summary_by_affiliation}
                \centering{\begin{tabular*}{\textwidth}{c @{\extracolsep{\fill}} c}
\toprule

\multicolumn{1}{c}{Test 1} & \multicolumn{1}{c}{Test 2}  \\
\midrule
Mean & 6.37  \\
Median & 1.00  \\
Std. Dev. & 19.01  \\
Kurtosis & 39.33  \\
Skewness & 5.79  \\
Minimum & 0.09  \\
Maximum & 194.45  \\
Sum & 5845 \\
Count & 917  \\
\bottomrule
\end{tabular*}}

\vspace{-2ex}
\begin{tablenotes}[flushleft]
\footnotesize
\singlespacing
\item\hspace{-2.5pt}\textit{Note}: Test
\end{tablenotes}
\end{table}

结果如下:

在此处输入图片描述

但我真正想要的是这个(没有垂直条等,但对齐应该看起来像这样:

在此处输入图片描述

答案1

您可以通过从环境切换tabular*tabularx环境并使用列类型的居中版本X而不是列c类型来实现格式化目标。

看上去似乎没有必要建立tablenotes环境。

在此处输入图片描述

\documentclass{article}
\usepackage{tabularx,booktabs}
\newcolumntype{C}{>{\centering\arraybackslash}X}

\begin{document}
\begin{table}[t]
%\small
\caption{Summary descriptive statistics}
\label{tab1:summary_by_affiliation}

\begin{tabularx}{\textwidth}{CC}
\toprule
Test 1 & Test 2  \\
\midrule
Mean & 6.37  \\
Median & 1.00  \\
Std. Dev. & 19.01  \\
Kurtosis & 39.33  \\
Skewness & 5.79  \\
Minimum & 0.09  \\
Maximum & 194.45  \\
Sum & 5845 \\
Count & 917  \\
\bottomrule
\end{tabularx}

\medskip 
\footnotesize
\textit{Note}: Test
\end{table}
\end{document} 

相关内容