- UID
- 380
- 帖子
- 157
|
1#
发表于 2013-3-26 19:14
问一个关于引理引用链接的问题
- \documentclass[11pt]{book}
- \usepackage{amsmath}
- \usepackage[amsmath, thmmarks]{ntheorem}
- \newtheorem{lemma}{Lemma}[chapter]
- \usepackage[colorlinks,linkcolor=red,anchorcolor=blue,citecolor=green]{hyperref}
- \begin{document}
- \chapter{1}
- \begin{lemma}
- Lemma 1
- \end{lemma}
- \chapter{10}
- \begin{lemma}\label{lemma10}
- Lemma 10
- \end{lemma}
- Ref the Lemma \ref{lemma10}
- \end{document}
复制代码 这是我的代码,我按照网上说的,运行了两次xelatex,把那个编号显示出来了,但是点这个编号,却跳到第一页上去了,我定义编号的时候是定义在引理10啊,应该跳到本页才对,怎么回事呢?
|
|