The pdf_combine function from pdftool r package can be used to combine different pdf documents.
pdftools::pdf_combine(
input = list(
"Page1.pdf"
, "Page2.pdf"
, "Page3.pdf"
, "Page4.pdf"
)
, output = "Pages1234.pdf"
, password = ""
)
Wondering if there is a way to combine these four pages into a single page something like Print multiple pages per sheet.
You can do this with the
magickpackage...This works with any number of pdfs, outputting them in pages four to a page. You might want to play with the settings to get the margins, dimensions or quality to your liking.