在下表中,“平均一致性与随机性”列在逻辑上只有一列,但它需要进行大量内部对齐:小数点应该全部对齐,不等号也是如此。为了实现这种内部对齐,我将其分成五列,再加两列用于填充,因为“平均一致性与随机性”比不等式宽得多。我对这一部分很满意。
实际上问题我遇到的问题是,我不知道如何让填充列自动调整大小,以便不等式块整体上看起来位于标题下方的中心。目前,我使用m
列手动设置固定宽度填充,我可以通过手动调整使其看起来足够好,但这很繁琐,如果我再次更改整体布局,就必须进行调整。
我尝试将m
列规范更改为m{0pt plus1fill}
,但“plus1fill”未被识别为宽度规范的一部分,而是嵌入在表格中。我还尝试使用c
来填充列,\hspace{\fill}
在两个顶部单元格中都使用 ;这导致不等式向左平齐在他们的标题下。
有什么建议吗?
\documentclass{article}
\usepackage{array}
\usepackage{booktabs}
\begin{document}
% approximate \thickmuskip outside math mode
\def\relskip{\hskip 0.27778em plus0.27778em\relax}
\begin{tabular}[b]{lrm{2.5em}@{}r@{.}l@{\relskip}c@{\relskip}r@{.}l@{}m{1.5em}}
\toprule
\textbf{Type} &
\textbf{\# clusters} &
\multicolumn{7}{c}{\textbf{Mean agreement vs. random}} \\
\midrule
\textbf{ASes} & 534 & & 99 & 28\% & $>$ & 99 & 20\% & \\
\textbf{Cities} & 481 & & 99 & 62 & $>$ & 98 & 99 & \\
\textbf{Countries} & 96 & & 93 & 88 & $\ll$ & 96 & 32 & \\
\textbf{Continents} & 6 & & 83 & 08 & $<$ & 84 & 05 & \\
\bottomrule
\end{tabular}
\end{document}
答案1
这将计算使列相对于 居中所需的空间\multicolumn
。我应该承认 更像-\tabcolsep
是一个捏造因素,因为我搞不清楚为什么需要它。
\documentclass{article}
\usepackage{array}
\usepackage{booktabs}
\usepackage{siunitx}
\newlength{\myspace}
\begin{document}
% approximate \thickmuskip outside math mode
\bgroup
\sbox0{\textbf{Mean agreement vs. random}}
\sbox1{\begin{tabular}{S@{}c@{}S}
99.28\% & $>$ & 99.20\%
\end{tabular}}% one row will do
\global\myspace=\dimexpr 0.5\wd0-0.5\wd1-\tabcolsep\relax
\egroup
\begin{tabular}[b]{lr p{\myspace} S @{}c@{} Sl}
\toprule
\textbf{Type} &
\textbf{\# clusters} &
\multicolumn{5}{c}{\textbf{Mean agreement vs. random}} \\
\midrule
\textbf{ASes} & 534 & & 99.28\% & $>$ & 99.20\% & \\
\textbf{Cities} & 481 & & 99.62 & $>$ & 98.99 & \\
\textbf{Countries} & 96 & & 93.88 & $\ll$ & 96.32 & \\
\textbf{Continents} & 6 & & 83.08 & $<$ & 84.05 & \\
\bottomrule
&&\multicolumn{5}{c}{\rule{0.5pt}{\ht\strutbox}}
\end{tabular}
\end{document}
答案2
我可能会使用更少的对齐点:
\documentclass{article}
\usepackage{array}
\usepackage{booktabs}
\begin{document}
\newcommand\p{\phantom{\%}}
\begin{tabular}{lr@{\qquad}r@{}>{${}}l<{{}$}@{}l}
\toprule
\textbf{Type} &
\multicolumn{1}{c}{\textbf{\# clusters}} &
\multicolumn{1}{r@{}}{\textbf{Mean agreement}}&
\multicolumn{2}{l}{\textbf{vs. random}} \\
\midrule
\textbf{ASes} & 534 & 99.28\% & >& 99.20\% \\
\textbf{Cities} & 481 & 99.62\p & >& 98.99 \\
\textbf{Countries} & 96 & 93.88\p &\ll& 96.32 \\
\textbf{Continents} & 6 & 83.08\p & <& 84.05 \\
\bottomrule
\end{tabular}
\end{document}
答案3
我会缩短标题。
\documentclass{article}
\usepackage{array}
\usepackage{booktabs}
\usepackage{siunitx}
\begin{document}
\begin{table}[htp]
\centering
\begin{tabular}{
@{}
l
S[table-format=3.0]
S[table-format=2.2]
>{$}c<{$}
S[table-format=2.2]
@{}
}
\toprule
Type &
{\# clusters} &
\multicolumn{3}{c@{}}{%
\begin{tabular}[t]{@{}c@{}}Mean agreement \\ vs.\ random (\%)\end{tabular}%
} \\
\midrule
ASes & 534 & 99.28 & > & 99.20 \\
Cities & 481 & 99.62 & > & 98.99 \\
Countries & 96 & 93.88 & \ll & 96.32 \\
Continents & 6 & 83.08 & < & 84.05 \\
\bottomrule
\end{tabular}
\caption{Some caption}
\end{table}
\end{document}
答案4
以下代码结合了 John Kormylo 和 的预先计算表格宽度的思想tabularray
。此外,表格序言指定:第一行和第一列的字体(不需要\textbf
在所有单元格中使用)、带有不等号的列的数学类型({}
在开头和结尾添加以使用二进制关系周围的通常数学间距)并使用数字和不等号消除列之间的间隙。数字使用 格式化siunitx
,但这里不需要(使用l
列就足够了)。
\documentclass{article}
\usepackage{tabularray}
\UseTblrLibrary{booktabs,siunitx}
\newdimen\myspace
\begin{document}
\bgroup
\sbox0{%
\begin{booktabs}{
colspec={lll},
row{1}={font=\bfseries},
}
Continents & \# clusters & Mean agreement vs. random \\
\end{booktabs}%
}
\global\myspace=\wd0
\egroup
\begin{booktabs}[
baseline=b,
]{
width={\myspace},
colspec={lrXS[table-format=2.2{\%}]cS[table-format=2.2{\%}]X},
row{1}={font=\bfseries},
column{1}={font=\bfseries},
column{5}={mode=math,preto={{}},appto={{}},colsep=0pt},
column{4}={rightsep=0pt},
column{6}={leftsep=0pt},
cell{1}{3}={c=5}{c},
}
\toprule
Type & \# clusters & Mean agreement vs. random \\
\midrule
ASes & 534 & & 99.28\% & > & 99.20\% & \\
Cities & 481 & & 99.62 & > & 98.99 & \\
Countries & 96 & & 93.88 & \ll & 96.32 & \\
Continents & 6 & & 83.08 & < & 84.05 & \\
\bottomrule
\end{booktabs}
\end{document}