beamer、lmodern 和 \scshape 给出“字体形状不可用”警告

beamer、lmodern 和 \scshape 给出“字体形状不可用”警告

在 beamer 中使用lmodern包和:\scshape

\documentclass{beamer}
\usepackage{lmodern}

\begin{document}
\frame{\scshape Normal size text}
\end{document}

给出:

LaTeX Font Warning: Font shape `OT1/lmss/m/sc' in size <10.95> not available
(Font)              Font shape `OT1/lmr/m/sc' tried instead on input line 5.

处理此警告的推荐方法是什么?将其静音就可以了。

答案1

我设法过滤了警告,使用

\usepackage{silence}
\WarningFilter{latexfont}{Font shape}

或者,如果silence必须在安全模式下加载包:

\usepackage[safe]{silence}
\WarningFilter*{latexfont}{Font}

相关内容