File stack underflow!
我想知道这是否是 currfile 包中的一个错误。运行给定的代码时,我收到警告:
另外,我遇到警告:Font shape 'OT1/cmss/m/n' in size <4> not available(Font) size <5> substituted
。
有人能帮我消除警告吗?我在 Windows PC 和 Mac 上的 Miktex 2.9 上都试过了,都给出了类似的警告。
\documentclass{beamer}
\usepackage{currfile}
\begin{document}
\begin{frame}[fragile]
\frametitle{Hello World}
Minimum Working Example
\end{frame}
\end{document}
答案1
请尝试以下操作。
% arara: pdflatex
\RequirePackage{currfile} % fixing 1st warning.
\documentclass{beamer}
\usepackage{lmodern} % fixing 2nd and 3rd warning.
\begin{document}
\begin{frame}[fragile]
\frametitle{Hello World}
Minimum Working Example
\end{frame}
\end{document}
这个问题也出现在我之前的帖子。我会尝试将此事告知 Martin Scharrer。