Skip to content
Prev 10832 / 15075 Next

"special" paper option of postscript device not working

Denis,

If you are submitting figures to a journal, you don't want a multipage file, you want one plot per file and EPS is a single page format.

They will usually then embed that EPS figure/file in whatever process they use to create the full paper. If they are using LaTeX, there are \includegraphics directives in the source .tex file that will tell the LaTeX processor to insert the EPS file (or other file types) into the resultant document at that point.

If you want a multipage PS file, you can create that, just like a multipage PDF file, but it would not be suitable for the submission of figures.

For example:

postscript("Multipage.ps", height = 5, width = 5)
barplot(1:5)
plot(1:10)
dev.off()

However, each page will be the same size (eg. US letter or A4, as defined by options()$papersize) and the plot size within the page will be defined by the height and width arguments.

Regards,

Marc
On Sep 22, 2014, at 8:51 PM, Denis Chabot <chabot.denis at gmail.com> wrote: