Summary: | GPL Ghostscript 9.05: EERROR: A pdfmark destination page 140 points beyond the last page 139. | ||
---|---|---|---|
Product: | Ghostscript | Reporter: | beldiceanu <nicolas.beldiceanu> |
Component: | PDF Writer | Assignee: | Ken Sharp <ken.sharp> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | alex |
Priority: | P4 | ||
Version: | 9.05 | ||
Hardware: | Macintosh | ||
OS: | MacOS X | ||
Customer: | Word Size: | --- | |
Attachments: | a zipped directory containing the files (see Description) |
Description
beldiceanu
2012-07-22 20:19:55 UTC
By some reason your zip file was not attached. Perhaps, the file was too big. Please attach a sample PS file, generated by your process. That's what Ghostscript developers like the best. It's difficult to reproduce problems starting from application files (even if your application is free software) because one may need to get the same version of the software to reproduce the problem. I believe that this is already 'fixed' we emit the warning but produce a file anyway. Of course without an example its hard to be certain.... I'm closing this as 'invalid' but if you think its still a problem with the HEAD code, and can supply a file , I'll look again. In the meantime I think I found the origin of my problem, namely: (1) my makefile compiles latex code to produce some figure (see example of small code at the end of this email). (2) then in my main latex file I import the produced figure. Now it turned out that with TexLive2009 everything works fine but with TexLive2011 and TexLive2012 the figure produced at step (1) is somehow corrupted, which make Ghostscript crash as I reported. But it is not the fault of Ghostscript to crash if the imported file was corrupted (the only thing is that the error message let me initially thought that I had an invalid hypperef link (something pointing to an undefined hyppertarget). The only thing I don't yet know is why the new TexLive produces a corrupted graphic file (the makefile uses dvips that call Ghostscript). But I plan to get around this problem by directly importing the latex code of the graphic in my main Latex file. Best regards, Nicolas Beldiceanu % File that produces a corrupted graphic file with % TexLive 2012 (dvips) using the following comand of % my makefile: $(EPS2): ctrs/%.eps: $(SRCFIGDIR)/tex/%.tex latex "$<"; \ dvips -E "$(*F).dvi" -o "$@"; \ rm -f $(*F).dvi $(*F).aux $(*F).log %----------------------------- ----------------------------------- \documentclass{article} \usepackage[dvipsnames]{pstricks} \usepackage{pstricks-add, pst-plot, pst-eps, xyling} \begin{document} \TeXtoEPS { \Tree{\K{atom}\B{d} \\ \K{col}\B{d} \\ \K{int$^5$}} } \endTeXtoEPS \end{document} |