在 pdf 页面之间插入空白页

在 pdf 页面之间插入空白页

我使用 pdfpages 包在文档中连续插入了两个单独的 pdf 页面。我需要在它们之间插入一张空白页,但是 \newpage 和 \clearpage 似乎都不起作用。有什么办法吗?

答案1

如果pages列表包含{},则包pdfpages会插入一个空白页,例如:

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

或者

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

答案2

\clearpage \mbox{} \clearpage只需在插入页面的命令之间使用即可。

答案3

我想在文件末尾插入一个完全空白的页面。这对我来说很有效(包括 John Kormylo 的建议\phantom{}):

\newpage
\thispagestyle{empty}   %Remove any text from page
\phantom{}              %Insert a blank page

相关内容