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.