在 LaTeX TOC 中添加包含的 PDF

发布于 2024-09-01 03:32:38 字数 360 浏览 3 评论 0原文

在我的文档中,我使用了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

黑凤梨 2024-09-08 03:32:38

pdfpages (第 6 页)的文档来看,它看起来就像有一个名为 addtotoc 的实验性标签。我想你会这样使用它:

\includepdf[pages=-, addtotoc={<page number>, section, 1, <heading>, <label>}]

其中<页码>是所包含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:

\includepdf[pages=-, addtotoc={<page number>, section, 1, <heading>, <label>}]

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.

も让我眼熟你 2024-09-08 03:32:38

您是否尝试过

\section[text for toc]{text for document}

在您的情况下

\section[text for toc]{}

抑制文档中的输出。

Have you tried

\section[text for toc]{text for document}

in your case

\section[text for toc]{}

to suppress the output in the document.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文