乳胶包括pdf在附录中的部分之后

时间:2014-09-10 18:04:22

标签: latex pdflatex

我想使用此命令在latex的附录中添加一些pdf页面:

\includepdf[pages=-,scale=.8,pagecommand={},linktodoc=true]{myPDF.pdf}

到目前为止工作正常,但它始终放在新页面中...换句话说:

我添加了\ section {title 1}然后是\ includepdf-command然后是\ section {title 2}和\ includepdf-command .....但是在每个\ section之后我得到一个空页然后是pdf-文件。但是如果适用的话,我希望将它们放在章节标题之后。

希望问题很清楚。

感谢您的帮助

3 个答案:

答案 0 :(得分:7)

添加多页文档时的另一种时尚解决方案:

\includepdf[pages=1,scale=.8,pagecommand={\section{My header}\label{pdf:myfile}},linktodoc=true]{myfile.pdf}
\includepdf[pages=2-,scale=.8,pagecommand={},linktodoc=true]{myfile.pdf}

特点:

  1. 页眉位于第一页顶部,没有裁剪
  2. 您可以为创建的部分设置标签
  3. 多页友好

答案 1 :(得分:2)

在此处找到解决方案:https://tex.stackexchange.com/questions/5911/how-to-include-pdf-pages-without-a-newpage-before-the-first-page

唯一的办法是在\ includepdf的pagecommand中添加\ section,如下所示:

\includepdf[pages=-,scale=.8,pagecommand={\section{title 1}\label{}},linktodoc=true]{myPDF1.pdf}
\includepdf[pages=-,scale=.8,pagecommand={\section{title 2}\label{}},linktodoc=true]{myPDF2.pdf}
....
谢谢你们。

更新: 我注意到\ label {}在页面命令中不起作用,因此我无法引用任何这些附录文件。还有另一种解决方法吗?

答案 2 :(得分:0)

或者你也可以使用minipage。

\begin{minipage}[t]{0.8\linewidth}
  \includepdf[pages=1,scale=1,pagecommand={},linktodoc=true]{myPDF.pdf}
\end{minipage}