使用 libertine 的西班牙语数学模式中的逗号会留下不需要的空格

使用 libertine 的西班牙语数学模式中的逗号会留下不需要的空格

我用西班牙语书写,其中使用逗号代替点作为小数分隔符。当使用 libertine 作为字体时,我发现逗号在右侧留下的空格有点太宽:

在此处输入图片描述

只有我一个人感到烦恼吗?我做错了什么吗?这是 MWE。提前致谢!

\documentclass[spanish]{article}
\usepackage{libertine}
\usepackage{libertinust1math}
\usepackage[T1]{fontenc}
\begin{document}
Here is the tenth part of one: $0,1$.

\end{document}

答案1

您应该加载 babel 并使用点表示小数:

姆韦

\documentclass[spanish]{article}
\usepackage{babel}
\begin{document}
Here is the tenth part of one: $0.1$.
\end{document}

相关内容