有 LaTeX PdfPages 包含的文件的链接
如何维护 pdf 文件 A 中包含指向其自身的链接的 pdf 文件 A 中的链接,以及包含文件 A 的文件 B 中的链接?
文件 A 具有指向其自身的内部链接。我将它包含到 Pdfpages 的 FileB 中,这样
This is in FileB
\usepackage[enable-survey]{pdfpages}
\usepackage{hyperref}
\includepdf[linktodoc=true, link=true]{fileA.pdf}
我已经测试了以下选项但未成功
linktodoc=true
link=true
thread=true
我正在阅读 本教程。
How can you maintain the links in your pdf fileA which contains links to itself in the fileB which includes FileA?
FileA has internal links to itself. I include it to FileB by Pdfpages such that
This is in FileB
\usepackage[enable-survey]{pdfpages}
\usepackage{hyperref}
\includepdf[linktodoc=true, link=true]{fileA.pdf}
I have tested the following options unsuccessfully
linktodoc=true
link=true
thread=true
I am reading this tutorial.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我从 Pdfpages 的创建者 A. Matthias 那里得到了以下回复。
因此,PDFpages 中还有很多工作要做。
I get the following response from the creator of Pdfpages, A. Matthias.
So there is work to be done in PDFpages.
根据您链接到的文档,使用
link
选项,您必须通过给定的链接名称链接到插入的页面 -<文件名>.<页码>
。如果您查看此演示,您可以看到一些执行此操作以及使用linktodoc
功能的明确示例。According to the documentation you linked to, with the
link
option, you have to link to the inserted pages by their given link names -<filename>.<page number>
. If you have a look at this demonstration, you can see some explicit examples of doing this, as well as usinglinktodoc
functionality.