假设我有一些数字相等但不完全相同。我希望让这些数字对齐,但也希望将不同的数字加粗以突出显示。这是我的尝试:
\documentclass{article}
\usepackage{siunitx}
\begin{document}
\begin{tabular}{r|S[detect-weight,table-format=2.15e+2]}
Algorithm & {Residual} \\ \hline
A & 14.082603491982\textbf{647}e-08 \\
B & 14.082603491982\textbf{575}e-08 \\
C & 1.616306278792575e-08 \\
\end{tabular}
\end{document}
我的问题是:是否可以在siunitx
字体粗体的同时保持美观的排版?实际上,只要能让最后三位数字突出,我都可以接受,无论是下划线还是其他什么。