\includegraphics[]{文件}

\includegraphics[]{文件}

我使用 Matlab 中的发布选项生成了一个 5 页 PDF 文件。我尝试使用 包含此文件\includegraphics[]{xxx.pdf},但它仅包含第 1 页(共 5 页)。解决方案是什么?

答案1

如果要包含多页 PDF 中的单页,解决方案是指定要包含的页面。我不知道特定的多页 PDF 是 MWE,因此xxx.pdf必须替换:

\documentclass{article}

\usepackage{graphicx}

\begin{document}
\includegraphics[page=3]{xxx.pdf}
\end{document}

相关内容