使用Latex eso-pic包我使用以下行插入背景图像:
\AddToShipoutPictureBG{
\AtStockLowerLeft{
\includegraphics[width=\paperwidth,height=\paperheight]{picture}}}
\begin{document}
...
这有效;现在每个页面都有我的图片作为背景。但是,只要我在任何章节中插入图片并使用adobe reader打开创建的* .pdf文档(在使用pdflatex成功编译之后),adobe就会崩溃并显示以下消息:"出现错误处理页面。阅读本文档存在问题(131)。"。我使用以下行插入图片:
\begin{figure}[h]
\begin{centering}
\includegraphics[width=1.0\columnwidth]{my_picture}
\par\end{centering}
\protect\caption{This is my picture.
\label{fig:my_picture}}
\end{figure}
我觉得这是因为我试图在彼此之上绘制两张图片(背景+文字图片)。但我不知道如何解决这个问题。有任何想法吗?