Latex的图片、文献、引用跳转链接

使用链接跳转需要使用宏包hyperref

\usepackage[colorlinks,
linkcolor=blue,
anchorcolor=blue,
citecolor=red
]{hyperref}
  1. clolorlink的意思是将超链接以颜色来标识,而并非使用默认的方框来标识。

  2. linkcolor, anchorcolor, citecolor分别表示标识link, anchor, cite等各种链接的颜色。

  3. 若不想使用彩色,就使用black即可