对于我的论文,我将在附录中包含一些 pdf 文件(即附录 a、b、c 等)。我希望章节标题(简介附录)和小节标题(附录 a:项目初步介绍)位于多页 pdf 文件第一页的顶部。
首先我在做:
\pagebreak
\section*{Appendix of Introduction}
\subsection*{Appendix a: Initial presentation of the project}
\includepdf[pages={ - },scale=0.8,pagecommand={\thispagestyle{plain}}] {appendix/Initial-presentation-of-the-project.pdf}
这样我就得到了一页,其中两个标题位于顶部,所包含的 pdf 文件从下一页开始。
被引导至此线程后:如何在第一页之前包含没有新页的 PDF 页面? 我知道如何获得小节与包含的 pdf 文件位于同一页面上,但现在子部分标题位于全部所包含的多页 pdf 文件的页面:
\pagebreak
\section*{Appendix of Introduction}
\includepdf[pages={ - },scale=0.8,pagecommand=\subsection{Appendix a: Initial presentation of the project}] {appendix/Initial-presentation-of-the-project.pdf}
我需要弄清楚如何将小节的标题仅显示在附录 (a) 的第一页上。
此外,如何获得部分同一页面上的内容也保持不变。
答案1
如果 PDF 只有一页,您可以将其视为图形或图像文件:
\pagebreak
\section*{Appendix of Introduction}
\subsection*{Appendix a: Initial presentation of the project}
\newline
\begin{center} %centre on page
\resizebox{0.8 \textwidth}{!}{ %resize inserted page
\includegraphics{{"appendix/Initial-presentation-of-the-project.pdf"}}
} %close resizebox
\end{center}
您还可以使用选项调整图形大小(\includegraphics[width=16cm]{{"appendix/Initial-presentation-of-the-project.pdf"}}
),但resizebox
会根据页面大小进行缩放。这也适用于在文档或投影仪演示文稿中包含矢量图像。
请记住将其包含\usepackage{graphicx}
在文档标题中。