Question: how can you create a pdf where the output is vertically
justified, with for example, a one inch margin on top using pdf()
.
For example in
pdf(file='test.pdf', paper='letter', pagecentre=F)
### code for plot here ###
dev.off()
is there an option where it generate output that starts from the top of the
page rather than printing from the bottom of the page (which is what happens when pagecentre=F
). Or will this require
some adjustment of settings in par()
?