pdfTeX 出现奇怪的“文件太多”错误

pdfTeX 出现奇怪的“文件太多”错误

这是auto-pst-pdf我使用引擎编译下面的 MWE 时收到的消息pdfTeX。我刚刚(即,截至本文发布之日)重新安装了整个 MikTeX 2.9 系统,并安装了完整的发行版。我的操作系统是 Windows XP。我在网上找不到有关此错误消息的任何有用信息。我在这里做错了什么吗?任何帮助都将不胜感激。

\documentclass{memoir}

\usepackage{ifpdf,ifxetex}
\usepackage[pdfcrop = {--hires}]{auto-pst-pdf}
\ifpdf\else\usepackage{pstricks}\fi

\begin{document}
\begin{pspicture}(0,0)(1,1)
\psframe*[linecolor = red](0,0)(1,1)
\end{pspicture}
Hi!
\end{document} 

编辑:错误消息似乎与 绑定pdfcrop。我删除该选项后pdfcrop = {--hires},问题就消失了。但现在有一个不便之处,就是我没有得到紧密裁剪的图片。

答案1

这似乎是一个比xkeyvalauto-pst-pdf当你输入选项时的问题

pdfcrop = {--hires}

由于某些原因,程序被称为

pdfcrop hires--hires "<filename>-autopp.pdf" "<filename>-pics.pdf"

这是不正确的。如果省略括号

pdfcrop = --hires

=或省略后面的空格

pdfcrop ={--hires}

一切都会顺利。

相关内容