我对这张表的外观不满意:
我认为第一列条目中的破折号应该垂直对齐。我不喜欢第二列整数百分比后面的额外空格,但又不想让它们全部对齐.0
。
我愿意接受美学和技术方面的修复。也许第二列的标题应该是Marginal Tax Rate (\%)
。
梅威瑟:
\documentclass{article}
\usepackage{booktabs}
\usepackage{siunitx}
\begin{document}
\begin{tabular}{cS[table-format=2.1]}
\toprule
Bracket & {Marginal Tax Rate} \\
\midrule
\$0 - \$9,075 & 10\% \\
\$9,075 - \$36,900 & 15\% \\
\$36,900 - \$89,350 & 25\% \\
\$89,350 - \$186,350 & 28\% \\
\$186,350 - \$405,100 & 33\% \\
\$405,100 - \$406,750 & 35\% \\
\$406,750+ & 39.6\% \\
\bottomrule
\end{tabular}
\end{document}
答案1
\documentclass{article}
\usepackage{booktabs}
\usepackage{siunitx}
\begin{document}
\begin{tabular}{r@{--}lS[table-format=2.1]}
\toprule
\multicolumn{2}{c}{Bracket (\$)} & {Marginal Tax Rate (\%)} \\
\midrule
0 & 9,075 & 10 \\
9,075 & 36,900 & 15 \\
36,900 & 89,350 & 25 \\
89,350 & 186,350 & 28 \\
186,350 & 405,100 & 33 \\
405,100 & 406,750 & 35 \\
\multicolumn{1}{r@{+}}{406,750} && 39.6 \\
\bottomrule
\end{tabular}
\end{document}
--
或者可能根据口味在周围留出一些额外的空间。