文本模式下数字和文本之间的间距

文本模式下数字和文本之间的间距

这段小文字的出现让我感到困惑:

\documentclass{article}
\begin{document}
    12 to 15
\end{document}

这在一定程度上取决于缩放级别,但可能不仅仅是我注意到2和之间的空间t小于o和之间的空间1。我知道 LaTeX 有等宽数字,但我不知道这超出了数学模式。

有什么办法可以使得排版的数字周围的空间更加平衡吗?

在此处输入图片描述

在此处输入图片描述

答案1

如果拉丁现代语言可以替代计算机现代语言,则您可以使用cfr-lm它来访问比例数字,如 David 所链接的答案中所述。

12 至 15

monowidth由于选择了等宽打字机选项,因此表格和比例数字在打字机字体的情况下相匹配。

\documentclass{article}
\usepackage[rm={lining,proportional},sf={lining,proportional},tt={lining,tabular,monowidth}]{cfr-lm}
\begin{document}
  \begin{tabular}{ll}
    12 to 15    &   proportional\\

    {\tstyle 12 to 15}  &   tabular\\

    \textsf{12 to 15}   &   proportional\\

    \textsf{\tstyle 12 to 15}   &   tabular\\

    \texttt{12 to 15}   &   tabular\\

    \texttt{\pstyle 12 to 15}   &   proportional\\
  \end{tabular}
\end{document}

相关内容