点击 pdf 文件前往指定位置

点击 pdf 文件前往指定位置

当我们编译 tex 文件时,我们会得到一个 pdf 文件。在某些 pdf 文件中(网上有很多这样的文件),如果我们单击上下文中的 tex 公式,那么我们就会进入 tex 公式段落或页面。

或者在内容页面中,如果我们点击某个部分,那么我们进入

我们如何在 tex 文件中写入来实现这一点?我认为我们需要一些包,但我不会编程。如果你有包,可以给我吗?

我通常使用以下内容:

\documentclass[10pt]{amsart}\usepackage[hmargin=0.5in, vmargin=0.2in]{geometry}
\usepackage{color}
\usepackage{graphicx}
\usepackage{multimedia, hfont, hangul}
\newtheorem{fac}{Fact} \newtheorem{idea}{IDEA}\newtheorem{cor}{Corollary}
\newtheorem{con}{Conjecture}\newtheorem{exa}{Example}\newtheorem{exe}{Exercise}
\newtheorem{thm}{Theorem}\newtheorem{defn}{Definition}\newtheorem{prop}{Proposition}
\newtheorem{lem}{Lemma}
\newtheorem{form}{Formula} \newtheorem{prf}{Proof}
\newtheorem{rmk}{Remark}
\begin{document}
\end{document}

这里有这样的功能吗?如果有,请告诉我。

提前致谢。

答案1

首先感谢您一直以来的帮助:Bolker、Bernard、cfr、Kormylo、Andrew 感谢您的评论。

我的旧 miktex 是 2.3 版,因此可能无法从更新的地方获得,因为它不提供服务。幸运的是,我从网上配备了 2.9 版。它与 Acrobat Reader DC 配合得很好。以下是我的例子。

\documentclass[10pt]{amsart}

\usepackage{color, hyperref} %%<-

\usepackage{graphicx}

\开始{文档}

临界点理论 90 \eqref{exa1} %%<- 著名理论 \eqref{thm1} %%<-

\begin{exa}\label{exa1} %%<-

在 ...

\结束{示例}

\begin{thm}\label{thm1} %%<-

如果 ...

\结束{thm}

相关内容