在 LaTeX TOC 中添加包含的 PDF
在我的文档中,我使用了一个 PDF。
\includepdf[pages=-]{./mypdf.pdf}
我遇到的问题是如何为此 pdf 添加目录条目。
应该是附录。我尝试在附录中添加一个新部分,但当然,部分名称不能打印在与包含的 pdf 相同的页面上,因此生成的 TOC 行会定向到错误的页面。
如果我使用 \addcontentsline
我会丢失编号,并且页面也错误,因为包含的 pdf 实际上从下一页开始......
我在这里有点迷失,所以如果有人知道,我将非常感激如何做到这一点。
注意:我尝试包含的 pdf 不是从 LaTex 生成的。
In my document I include a PDF using
\includepdf[pages=-]{./mypdf.pdf}
The problem I'm having is how to add a TOC entry for this pdf.
It supposed to be an appendix. I tried adding a new section in the appendix but of course the section name can't be printed on the same page than the included pdf, so the resulting TOC line directs to a wrong page.
If I use \addcontentsline
I loose the numbering and the page is wrong too because the included pdf actually starts at the next page...
I'm a bit lost here so I would really appreciate if someone knows how to do this.
Note: the pdf I try to include was not generated from LaTex.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从 pdfpages (第 6 页)的文档来看,它看起来就像有一个名为
addtotoc
的实验性标签。我想你会这样使用它:其中
<页码>
是所包含PDF的所需页码(编辑)链接到、
是目录中的标题,是您可以
\ref
访问该部分的方式。From the documentation of pdfpages (page 6) it looks like there is an experimental tag called
addtotoc
. I think you'd use it like:Where
<page number>
is the desired page number of the included PDF (edit) to link to,<heading>
is the title in the TOC, and<label>
is how you may\ref
to the section.您是否尝试过
在您的情况下
抑制文档中的输出。
Have you tried
in your case
to suppress the output in the document.