答案1
以下 MWE 重现了该问题并清楚地表明了这cfr-lm
是导致旧式数字的原因。
\documentclass{report}
\usepackage{cfr-lm}
\begin{document}
\chapter{chapter}
\section{section}
\section{section}
\section{section}
\section{section}
\end{document}
查看其文档,我们发现:
默认情况下,提供的 LATEX 包
cfr-lm.sty
使用比例旧式数字和可变宽度打字机,但可以在加载包时通过传递适当的选项来更改这一点。
根据您想要的输出,您可以添加一个选项,例如rm={oldstyle=false}
:
\documentclass{report}
\usepackage[rm={oldstyle=false}]{cfr-lm}
\begin{document}
\chapter{chapter}
\section{section}
\section{section}
\section{section}
\section{section}
\end{document}