合并不同页面大小的 PDF

合并不同页面大小的 PDF

合并后的单个 PDF 文件是否可以包含不同大小的页面,例如 A4 和 Letter?如果可以,您能告诉我保留页面大小的合并工具吗?

答案1

是的,PDF 文件可以有不同页面大小(介质大小)的页面。

是的,如果给出了选项,包pdfpages能够“合并”具有不同页面大小的 PDF 文件并将它们保存在输出中,例如:fitpaper

\documentclass{article}
\usepackage{pdfpages}
\begin{document}
\includepdf[pages=-,fitpaper]{document-a4}
\includepdf[pages=-,fitpaper]{document-letter}
\end{document}

该选项fitpaper有一个限制,即它假定所包含的 PDF 的页面具有相同的介质大小。

答案2

pdfpagesincludegraphics在后台使用,因此你可以执行类似

\includegraphics[width=6in, height=9.25in, keepaspectratio]{back.pdf}
\includegraphics[width=0.541in, height=9.25in, keepaspectratio]{spine.pdf}
\includegraphics[width=6in, height=9.25in, keepaspectratio]{cover.pdf}

或者你想如何组织你的 pdf

相关内容