我在投影仪中使用了铸造的包装,我的演示文稿开头是一张空白的幻灯片,其中只有#34; color"在演讲幻灯片之前写的。我怎么解决这个问题?这是MWE:
\documentclass{beamer}
\usepackage{minted}
\begin{document}
\begin{frame}[fragile]
\begin{minted}{python}
class X(object):
pass
\end{minted}
\end{frame}
\end{document}
答案 0 :(得分:0)
查阅日志文件。您可能会发现需要激活“-shell-escape”或缺少pygmetize的提示。如果是这样的话:
安装Pygments:pip install Pygments
将-shell-escape
标志添加到latex命令。