如何在插入的 pdf 文件的第一页上打印附录中的标题

如何在插入的 pdf 文件的第一页上打印附录中的标题

我的文档中有附录,但它仅包含一个大型 pdf 文件。当我按以下方式执行操作时,我会从上一页末尾或新页面上的附录中获取标题,但不会在实际附录的第一页上获取标题。

\bibliographystyle{apacite}
\bibliography{mybib}

\cleardoublepage

\begin{appendices}
    \chapter{Appendix A}
    \label{ApA}
    \includepdf[pages={1}]{EPVDP.pdf}
    \includepdf[pages={2-}]{EPVDP.pdf}
\end{appendices}

问题是:我想裁剪 pdf 的第一页,以便将标题和章节标题放在“第一页”的正上方。这可能吗?

答案1

我想我找到了一个解决方案,但只有当你的第一页不是全文页时才有可能。将 pdf 的第一页保存为图形并将其添加进去即可解决问题。

\onecolumn 

\begin{appendices}
    \chapter{Appendix A}
    \label{ApA}
    \begin{figure}[ht!]
        \centering
        \centerline{\epsfig{figure=firstpage.jpg,width=\textwidth,height=22cm}}
    \end{figure}
    \includepdf[pages={2-}]{EPVDP.pdf}
\end{appendices}

相关内容