根据所加载的包的组合,的宽度\widetilde
可能会有错误。
我猜这是 koma 中的一个错误,但是它也以某种方式受到了 lmodern 包的影响,尽管只有与 koma 结合时才会受到影响。
我认为我需要找到一种替代品lmodern
或停止使用 koma。还有其他补救措施吗?
0. 期望输出
\documentclass{article}
% \usepackage{amsmath} % does not make a difference
% \usepackage{lmodern} % does not make a difference
\begin{document}
\begin{equation}
\widetilde{c_x'} \widetilde{c_y'}
\end{equation}
\end{document}
1. 没有 amsmath 的 KOMA
\documentclass{scrartcl}
\begin{document}
\begin{equation}
\widetilde{c_x'} \widetilde{c_y'}
\end{equation}
\end{document}
2. 使用 amsmath 进行 KOMA
\documentclass{scrartcl}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\widetilde{c_x'} \widetilde{c_y'}
\end{equation}
\end{document}
3. 带有 lmodern 的 KOMA(带或不带 amsmath)
\documentclass{scrartcl}
% \usepackage{amsmath} % does not make a difference
\usepackage{lmodern}
\begin{document}
\begin{equation}
\widetilde{c_x'} \widetilde{c_y'}
\end{equation}
\end{document}