所附 PDF 的标题如下

所附 PDF 的标题如下

我想包含一个 PDF 文档并在页面底部添加标题。我尝试使用以下语句:

\begin{landscape}
\includepdf[pages=1,scale=0.8,landscape,pagecommand={\thispagestyle{plain}\null\vfill\captionof{table}{Caption Text}}]{Test.pdf}
\end{landscape}

PDF 被包含并且标题被添加但它与包含的 PDF 重叠: 在此处输入图片描述

我已经尝试设置了\vspace*{12cm},但这会导致标题移动到下一页。有没有办法将标题移动到 PDF 下方?

答案1

您可以使用 \enlargethispage:

\documentclass{article}
\usepackage{pdfpages,caption}
\begin{document}
\includepdf[pagecommand={\null\vfill\captionof{table}{blub}}]{example-image}

\includepdf[pagecommand={\null\enlargethispage{2\baselineskip}\vfill\captionof{table}{blub}}]{example-image}
\end{document}

在此处输入图片描述

相关内容