LaTeX 链接约定
如何链接到 LaTeX 文档的另一个部分或小节? 此类链接的常规格式是什么,是像[链接名称]一样写,还是像网页超链接一样?
How do I link to another section, or subsection of my LaTeX document? What is the conventional format for such links, to write them like [link name], or to do them like webpage hyperlinks?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
链接到另一个部分需要您的部分进行一些额外的标记。 要使用的命令是:
\label{identifier} - 创建一个标签,稍后可以通过以下两个命令引用
\ref{identifier} - LaTeX 将此标记替换为 定义标签标识符的节/小节/图/表/定理的编号。
\pageref{identifier} - LaTeX 将此标记替换为 定义标签标识符的节/小节/图/表/定理的页码。
因此,要创建对文本中另一个节的引用,请说“参见节” XY on page Z”,您写道
注意:当您交叉引用时,请确保多次编译,直到不再收到任何警告。
Linking to another section requires some additional markup from your part. The commands to use are:
\label{identifier} - Creates a label which can later be referenced by the following two commands
\ref{identifier} - LaTeX replaces this markup with the number of the section/subsection/figure/table/theorem in which the label-identifier is defined.
\pageref{identifier} - LaTeX replaces this markup with the page number of the section/subsection/figure/table/theorem in which the label-identifier is defined.
So, to create a reference to another section in your text, say "see section X.Y on page Z", you write
Note: When you are cross-referencing, make sure to compile multiple times until you no longer get any warnings.
是的,除了使用
\label
、\ref
和\pageref
之外,还可以使用包hyperref
。Yes, in addition to using
\label
,\ref
and\pageref
, use the packagehyperref
.