关于 pdfpages 的一个问题:我可以有一个标题吗?

关于 pdfpages 的一个问题:我可以有一个标题吗?

我正在使用 pdfpages 将一些 pdf 文件包含在当前文档中。但我希望其中一些 pdf 页面有一个 LaTeX 标题,可以使用分段命令\section*{This is how it is}或仅使用粗体行:\textbf{This is how it is}。但是,pdfpaged 材料似乎喜欢单独放在一页上,即使我添加了缩放因子,我也无法将标题和 pdf 页面放在一起。发生的情况是,我将标题单独放在一页上,而将 pdf 页面放在下一个页。

includegraphics如果我使用而不是,我可以得到我想要的结果,includepdf但当然我只得到所包含的 pdf 文件的第一页。

答案1

您可以pagecommand像这样使用该选项:

\includepdf[pages=1,pagecommand={\section{Second title}\label{mylabel}\hfill}]{file.pdf}
\includepdf[pages=2-,pagecommand={\hfill}]{file.pdf}

相关内容