Latex的图片、文献、引用跳转链接
使用链接跳转需要使用宏包hyperref
\usepackage[colorlinks,
linkcolor=blue,
anchorcolor=blue,
citecolor=red
]{hyperref}
-
clolorlink的意思是将超链接以颜色来标识,而并非使用默认的方框来标识。 -
linkcolor, anchorcolor, citecolor分别表示标识link, anchor, cite等各种链接的颜色。 -
若不想使用彩色,就使用
black即可