2

unrecoverable error, exit code 1当我尝试将我的 .ps 文件转换为 pdf 时,我出现了。大约半小时前它工作了,现在它不会了。文件在那里

Error: /undefinedfilename in (10132012a.ps)
Operand stack:

Execution stack:
   %interp_exit   .runexec2   --nostringval--   --nostringval--   --nostringval--   2   %stopped_push   --nostringval--   --nostringval--   --nostringval--   false   1   %stopped_push
Dictionary stack:
   --dict:1161/1684(ro)(G)--   --dict:0/20(G)--   --dict:77/200(L)--
Current allocation mode is local
Last OS error: 2
GPL Ghostscript 9.04: Unrecoverable error, exit code 1

这是我的命令:

ps2pdf 10132012a.ps 10132012b.pdf

ps 文件是使用latex.

我正在运行 Ubuntu 11.10。

4

3 回答 3

4

您可以尝试直接运行 Ghostscript,而不是使用脚本:

gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -o 10132012b.pdf 10132012a.ps

甚至:

gs -sDEVICE=pdfwrite -o 10132012b.pdf - < 10132012a.ps

“便利”脚本(ps2pdf、pdf2ps 等)使用可能会妨碍您的选项(尽管它们确实不应该)。

于 2012-10-26T15:04:09.973 回答
1

我刚刚找到了解决此/undefinedfilename错误的绝妙方法。我花了大约 15 分钟才弄明白。

首先,我这样做了。

user@host> dvips test1
This is dvips(k) 5.98 Copyright 2009 Radical Eye Software (www.radicaleye.com)
' TeX output 2015.08.04:2315' -> test1.ps
</usr/lib/texmf/dvips/base/tex.pro></usr/lib/texmf/dvips/base/texps.pro>. 
</usr/share/texmf/fonts/type1/public/amsfonts/cm/cmr10.pfb>[-1] [-2] [1] [2] 

然后我做了这个。

user@host> ps2pdf text1.ps
Error: /undefinedfilename in (text1.ps)
Operand stack:

Execution stack:
   %interp_exit   .runexec2   --nostringval--   --nostringval--   --nostringval--   2   %stopped_push   --nostringval--   --nostringval--   --nostringval--   false   1   %stopped_push
Dictionary stack:
   --dict:1172/3371(ro)(G)--   --dict:0/20(G)--   --dict:70/200(L)--
Current allocation mode is local
Last OS error: 2
GPL Ghostscript 8.70: Unrecoverable error, exit code 1

然后它终于击中了我。这是文件名中的拼写错误。所以命令行参数ps2pdf是一个不存在的文件。

在我看来,更好的错误信息应该是Cannot find file test1.ps,而不是Error: /undefinedfilename in (text1.ps)

于 2015-08-04T13:49:46.737 回答
0

该错误意味着ps2pdf找不到文件10132012a.ps

latex不创建 ps 文件:它创建可以转换为 ps 的 dvi 文件dvips

也许你忘了跑dvips

于 2012-10-25T11:37:27.313 回答