这些字体形状警告是什么意思?

这些字体形状警告是什么意思?

当我使用 pdflatex 编译文档时出现以下错误:

LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <5.5> not available
(Font)              size <5> substituted on input line 50.


LaTeX Font Warning: Font shape `OML/cmm/m/it' in size <5.5> not available
(Font)              size <5> substituted on input line 50.


LaTeX Font Warning: Font shape `OMS/cmsy/m/n' in size <5.5> not available
(Font)              size <5> substituted on input line 50.

这些警告到底是什么意思?我认为它们来自的区域被括在了 中{\fontsize{11}{12}\selectfont }。此外,行号似乎是调用宏的地方,而不是宏中发生这种情况的地方。

我该如何解决这些警告?

答案1

0.5pt 的尺寸替换是无害的,但如果您想避免它,请加载 fix-cm 包:

\RequirePackage{fix-cm}
\documentclass{article}


\begin{document}
\fontsize{11pt}{12pt}\selectfont $a^2$
\end{document}

相关内容