LaTeX 链接约定

发布于 2024-07-23 06:00:33 字数 69 浏览 0 评论 0原文

如何链接到 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 技术交流群。

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

发布评论

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

评论(2

清秋悲枫 2024-07-30 06:00:33

链接到另一个部分需要您的部分进行一些额外的标记。 要使用的命令是:

  • \label{identifier} - 创建一个标签,稍后可以通过以下两个命令引用

  • \ref{identifier} - LaTeX 将此标记替换为 定义标签标识符的节/小节/图/表/定理的编号。

  • \pageref{identifier} - LaTeX 将此标记替换为 定义标签标识符的节/小节/图/表/定理的页码

因此,要创建对文本中另一个节的引用,请说“参见节” XY on page Z”,您写道

\label{mySection} % Put this inside your section

see section \ref{mySection} on page \pageref{mySection}"

注意:当您交叉引用时,请确保多次编译,直到不再收到任何警告。

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

\label{mySection} % Put this inside your section

see section \ref{mySection} on page \pageref{mySection}"

Note: When you are cross-referencing, make sure to compile multiple times until you no longer get any warnings.

那小子欠揍 2024-07-30 06:00:33

是的,除了使用 \label\ref\pageref 之外,还可以使用包 hyperref

Yes, in addition to using \label, \ref and \pageref, use the package hyperref.

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