如何使用 \hyperref 或其他方式跳转到 pdf 的特定部分

如何使用 \hyperref 或其他方式跳转到 pdf 的特定部分

我想引用我论文中的前一个例子。我怎样才能创建一个引用,点击后会带你到相关的例子?我是一个非常业余的用户,所以我需要它尽可能简单。我的目标是:假设我们在示例 4.4.3 上。我想说“使用示例 2.2.2 中给出的集合”,然后让读者通过点击它转到示例 4.4.3。

答案1

结果

\documentclass{article}
\usepackage{amsthm,hyperref}
\newtheorem{example}{Example}

\begin{document}
    \begin{example}[First example]\label{ex:first}
        Content.
    \end{example}
    \begin{example}[Second example]
        Using the set given in Example~\ref{ex:first}\ldots
    \end{example}
\end{document}

看一下cleveref包裹可能会有好处。

相关内容