我尝试在 LaTeX Beamer 演示文稿中添加一些图片。我使用 auto-pst-pdf 生成 pdf 输出。
奇怪的是,结果文档中只显示了第一张图片。这是一个最简单的示例。您可以在此处找到输出消息:http://pastebin.com/vqmGTXix
\documentclass{beamer}
\usepackage[english]{babel}
\usepackage{pstricks}
\usepackage{auto-pst-pdf}
\begin{document}
\begin{frame}
\begin{pspicture}(1,1)
\psline(0,0)(1,1)
\end{pspicture}
\end{frame}
\begin{frame}
\begin{pspicture}(1,1)
\psline(1,0)(0,1)
\end{pspicture}
\end{frame}
\end{document}
我如何确保第二张图像也将被编译?
先感谢您!