[Tex/LaTex] Inserting blank page between pdf pages

pdfpages

I have used the pdfpages package to insert two separate pdf pages in my document, one after the other. I need to put a blank page in between them, however, neither \newpage nor \clearpage seem to be working. Is there any way to do this?

Best Answer

If the pages list contains {}, then package pdfpages inserts an empty page, e.g.:

\includepdf[pages={1, {}}]{fileA}% page 1 of fileA, empty page
\includepdf[pages={42}]{fileB}% page 42 of fileB

Or

\includepdfmerge{fileA.pdf, 1, {}, fileB.pdf, 42}