I am making a forest plot and want to save it in a PDF file.
My forest area is large (8in * 20in). It can fit into a single page PDF file as follows:
dev.print(pdf, file="C:\\Work\\plot.pdf", width=8, height=20);
But this is too long: when I print this PDF document on A4 paper, I need to compress it to fit the paper.
So, I want to save it in a two-page PDF file (from R). Ps: this is not a question of how to install the printer.
How to do it?
source share