我想知道如何缩小这个表格的大小,因为它比一页上的文本宽度还大。或者我应该固定每列的宽度吗?如果是,该怎么做?
\begin{document}
\begin{table}[!htbp]
\centering
\caption{Comparison of the CCSHR estimators based on beta and logit-normal distributions}
\begin{tabular}{c|ccc|ccc}
\toprule
& \multicolumn{3}{c|}{pH 1.4} & \multicolumn{3}{c}{pH 2.2} \\
\midrule
& \multicolumn{1}{c}{\textit{N}$_{\text{max}}$ (nm)} & {\textit{C}$_{\text{D}}$\textsuperscript{'}} (µM)& \textit{D} & \textit{A}$_{\text{max}}$ (µm) & \textit{D}$_{\text{D}}$\textsuperscript{'} (µm) & \textit{A} \\
\\[-1em]
{Molecule AB} & \multicolumn{1}{c}{2.0 ± 0.2} & {7.9 ± 0.6} & {4.7 ± 0.1} & {7.8 ± 0.3} & {26 ± 6} & {0.87 ± 0.09} \\
{Molecule C} & \multicolumn{1}{c}{9.2 ± 0.2} & {25.9 ± 1.4} & {2.07 ± 0.04} & {1.8 ± 0.3} & {70 ± 5} & {0.19 ± 0.06} \\
%\bottomrule
\hline
\end{tabular}
\label{tab:addlabel}
\end{table}
tex tex tex text tex tex tex t ex text text tex tex tex text tex tex tex t ex text text tex tex tex text tex tex tex t ex text text tex tex tex text tex tex tex t ex text text
\end{document}
我在添加此行命令时解决了这个问题: \setlength{\tabcolsep}{.085cm}
答案1
垂直线间隙的问题是由于 引起的\\[-1em]
。
我的建议是重新做一下表格并删除所有垂直线:
\documentclass{article}
\usepackage{booktabs}
\usepackage{amsmath}
\usepackage[separate-uncertainty=true]{siunitx}
\begin{document}
\begin{table}[!htbp]
\centering
\caption{Comparison of the CCSHR estimators based on beta and logit-normal distributions}
\label{tab:addlabel}
\setlength{\tabcolsep}{.12cm}
\begin{tabular}{
@{}
l
@{\hspace*{0.25cm}}
S[table-format = 1.1(2)]
S[table-format = 2.1(2)]
S[table-format = 1.2(2)]
@{\hspace*{0.25cm}}
S[table-format = 1.1(2)]
S[table-format = 2.0(2)]
S[table-format = 1.2(2)]
@{}
}
\toprule
& \multicolumn{3}{c}{pH 1.4}
& \multicolumn{3}{c}{pH 2.2} \\\addlinespace
% \cmidrule(l{0cm}r{0.25cm}){2-4}\cmidrule(r{-0.0cm}l{0cm}){5-7}
& {$N_{\text{max}}$(\si{nm})}
& {$C_{\text{D}}'$(\si{\mu M})}
& {\textit{D}}
& {$A_{\text{max}}$(\si{\mu m})}
& {$D_{\text{D}}'$(\si{\mu m})}
& {\textit{A}} \\
\cmidrule(l{0cm}r{0.25cm}){2-4}\cmidrule(r{-0.0cm}l{0cm}){5-7}
Mol.\ AB & 2.0 +- 0.2 & 7.9 +- 0.6 & 4.7 +- 0.1 & 7.8 +- 0.3 & 26 +- 6 & 0.87 +- 0.09 \\
Mol.\ C & 9.2 +- 0.2 & 25.9 +- 1.4 & 2.07 +- 0.04 & 1.8 +- 0.3 & 70 +- 5 & 0.19 +- 0.06 \\
\bottomrule
\end{tabular}
\end{table}
tex tex tex text tex tex tex t ex text text tex tex tex text tex tex tex t ex text text tex tex tex text tex tex tex t ex text text tex tex tex text tex tex tex t ex text text
\end{document}
答案2
不知道你的页面布局(你提供的代码没有序言!)很难说什么可以解决你的问题。例如使用序言
\documentclass{article}
\usepackage[margin=30mm]{geometry}
效果很好。因此,我的大部分回答都针对了题外话:
\documentclass{article}
\usepackage{booktabs, tabularx}
\usepackage{siunitx}
\usepackage{amsmath}
\usepackage{caption}
\usepackage{lipsum}
\begin{document}
\begin{table}[!htbp]
\sisetup{separate-uncertainty=true}
\setlength\tabcolsep{2.5pt}
\centering
\caption{Comparison of the CCSHR estimators based on beta and logit-normal distributions}
\sisetup{separate-uncertainty=true}
\setlength\tabcolsep{2.5pt}
\begin{tabularx}{\linewidth}{@{}
>{\raggedright}X
S[table-format=1.1(1)]
S[table-format=2.1(1)]
S[table-format=1.2(1)]
%
S[table-format=1.1(1)]
S[table-format=2.0(1)]
S[table-format=1.2(1)]
@{}}
\toprule
& \multicolumn{3}{c}{pH 1.4}
& \multicolumn{3}{c}{pH 2.2} \\
\cmidrule(lr){2-4}\cmidrule(lr){5-7}
Molecule
& {$N_{\max}$ (nm)} & {$C_{\text{D}}'$ (\si{\micro\mole})} & {$D$}
& {$A_{\max}$ (µm)} & {$D_{\text{D}}'$ (µm)} & {$A$} \\
\midrule
Molecule AB & 2.0(2) & 7.9(6) & 4.7(1) & 7.8(3) & 26(6) & 0.87(9) \\
Molecule C & 9.2(2) & 25.9(14) & 2.07(4) & 1.8(3) & 70(5) & 0.19(6) \\
\bottomrule
\end{tabularx}
\label{tab:addlabel}
\end{table}
\lipsum[1]
\end{document}
编辑:出色地,萨姆卡特用几乎相同的解决方案打败了我 30 分钟!当我上传我的答案(我的床!)时,我意识到了这一点。所以在第一次删除我的答案时,我现在对我的答案的第一个版本做了一些小的更正并重新打开它(因为它们之间有(稍微)一点差异 :)。