Latex中引用公式和图片,并实现超链接点击自动跳转
Latex中使用\ref{}引用文中定义的公式或者图片时,有时会出现引用显示正确,但是单击时不会跳转到出处的现象,这时需要建立超链接实现跳转,具体操作如下:
在Latex文件前面添加如下内容
\usepackage{hyperref} \hypersetup{hypertex=true, colorlinks=true, linkcolor=blue, anchorcolor=blue, citecolor=blue}
然后再引用,此时点击时就可以跳转了。
其中
\hypersetup{hypertex=true, colorlinks=true, linkcolor=blue, anchorcolor=blue, citecolor=blue}
是使用hyperref的一个具体配置信息,详细的hypererf的使用手册可以在命令窗口中输入
texdoc hyperref
会弹出一个使用手册