LaTeX - 在定义节/小节之前使用 \hyperref 引用节/小节?
我一直在使用 hyperref 包和 \hyperref[…]{…}
将可点击链接(在 PDF 中)放置到某个部分或小节。不过,我想在放置 \subsection
声明之前放置可点击链接。我的第一次尝试似乎产生了一个转到第一页的链接。在定义链接之前,是否需要做一些特殊的事情才能使链接正常工作?我已经在命令行上运行乳胶两次。
I have been using the hyperref package and \hyperref[…]{…}
to put a clickable link (in a PDF) to a section or subsection. However I want to put the clickable link before i put the \subsection
declaration. My first attempt seems to produce a link that goes to the first page. Is there something special you have to do to get the links working before you define them? I am already running latex twice on the command line.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上这是我的代码中的一个错误。我在
\hyperref
调用周围有额外的尾随空格,这意味着它不是相同的文本。如果我删除空格并运行 pdflatex 两次,那么一切正常Actually it was a bug in my code. I had extra trailing whitespace around the
\hyperref
call, which means it wasn't the same text. If I remove the spaces, and run pdflatex twice, then everything works