我正在尝试在通过 texworks 生成的 pdf(文件 A)末尾插入一个多页 pdf 文件(文件 B)。我尝试添加的 pdf B 非常大(pdf 和 tex 文件都在同一个文件夹中)> 我尝试在单独的 tex 文件中执行以下命令..它运行良好,但是当我尝试在工作 tex 文档中执行相同操作时,我仍然可以排版文档 A,但我收到这样的错误消息(未定义的控制序列.l.91 \includepdf [pages=-]{thesis.pdf})并且 pdf B 未合并到文档 A..我该如何解决这个问题?
\documentclass{article}
\usepackage{pdfpages}
\begin{document}
fillerwordfillerwordfillerword
\usepackage[final]{pdfpages}
\includepdf[pages=-]{thesis.pdf}
\end{document}
答案1
您需要\usepackage{pdfpages}
在前言中即之前包含\begin{document}
。至少您的示例不需要final
使用包加载的参数pdfpages
。您不需要thesis.tex
在工作目录中包含 。只要有thesis.pdf
就足够了。尝试以下代码片段。
\documentclass{article}
\usepackage{pdfpages}
\begin{document}
fillerwordfillerwordfillerword
\includepdf[pages=-]{thesis.pdf}
\end{document}