Displaying 1 result from an estimated 1 matches for "raweps".
2004 Apr 03
2
a fix for rotated PDF graphs
...think it's an actual
acroread bug. I am using R 1.8.1.
The solution is to "distill" the files using eps2eps, part of
ghostscript on my Debian box. Here is an example Makefile I use for
this:
---- cut here ----
EPS2EPS=eps2eps
EPSTOPDF=epstopdf
all: graph1.pdf graph2.pdf
%.pdf: %.raweps
$(EPS2EPS) $< $*.eps
$(EPSTOPDF) $*.eps
---- cut here ----
So I have a fix now, and it works. But I still think that either the
postscript() function in R, or both acroread and gs are broken. I know
no ps/pdf, so I can't decide which, but in the long run, somebody with
som...