如何在 dcolumn (小数对齐) 中使用 sans-serif?

如何在 dcolumn (小数对齐) 中使用 sans-serif?

我正在用 sans 字体设置一些时间表。我想用它dcolumn来对齐小数点上的时间,但该包假定您正在使用数学。

有没有简单的方法可以解决这个问题,并将dcolumn列设置为当前或指定的字体?我不需要任何数学符号。

答案1

您可以使用sansmath

\documentclass{article}
\usepackage{dcolumn,sansmath}

\newenvironment{sftabular}
 {\sffamily\mathversion{sans}\tabular}
 {\endtabular}

\begin{document}

\begin{sftabular}{lD{.}{.}{2.2}}
xyz &  2.1 \\
abc & 12.2 \\
uvw &  1.21
\end{sftabular}

\end{document}

在此处输入图片描述

相关内容