pdfpages 和 includepdf 不起作用

pdfpages 和 includepdf 不起作用

我编译了以下文件(通过 MiKTeX,我刚刚更新了所有文件),但没有junk.pdf插入该文件。

\documentclass{report}
\usepackage{pdfpages}
\begin{document}
qwe
\includepdf[pages=-]{./junk.pdf}
\end{document}

.log文件junk.pdf在那里:junk1.logjunk.pdf

好的,是的,它可以与 一起使用pdflatex,但由于插入 EPS 图形的其他限制,我必须使用latex-> dvips-> ps2pdf。此外,我不知道如何使用建议的lastpage选项。

使用\includepdf[nup=2x2,frame,pages={1-13}]{./junk.pdf}我确实正确获得了应该包含的 5 页junk.pdf,但我获得了中间带有黑点的空白页。

答案1

pdfpages请注意您发出的警告.log

Package pdfpages Warning: I cannot determine the number of pages of the
(pdfpages)                included document, while being in DVI mode. You
(pdfpages)                can use the option `lastpage' to give me a hint.

处于 DVI 模式表明您正在使用 进行编译latex。您应该使用 进行编译pdflatex

如果您有想要包含的 EPS 数据,并且觉得这迫使您使用latex-> dvips->ps2pdf编译序列,请考虑阅读以下帖子:

答案2

lastpage您可以使用以下选项,

\includepdf[lastpage=12]{Appendices/pdf_that_is_12_pages_long.pdf}

而不是指定哪些页面。

相关内容