提问于:
浏览数:
2862
## 编译环境
操作系统
* [ ] Windows 7/8/10
* [ x ] macOS
* [ ] Linux
`若需勾选,请把[ ]改成[x]`
Tex发行版
* [ ] TexLive `年份`
* [ ] MikTeX `版本号`
* [ ] CTeX
`若需勾选,请把[ ]改成[x]`
## 我的问题
如何实现定理跳转
比如有这样一个定理
```
\begin{theorem}[Lebesgue 定理]\label{th:lebesque}
...
\end{theorem}
```
在某处引用`\ref{th:lebesque}`, 那么在显示的定理编码上点击可以跳转的该定理label的地方。
3 回答
0
用 hyperref 宏包加上链接。
0
```tex
\documentclass{article}
\usepackage{amsthm}
\usepackage{lipsum}
\usepackage{hyperref}
\newtheorem{lem}{Lemma}
\begin{document}
\lipsum[1-2]
\begin{lem}\label{lem:test}
\lipsum[1-2]
\end{lem}
\lipsum[1-2]
Lemma~\ref{lem:test}
\end{document}
```
0
主要依靠 `hyperref` 包
你的回答
请登录后回答
你的回答将会帮助更多人,请务必认真回答问题。