2

I have seen some PDF documents where figure numbers, citations, table numbers are highlighted and clickable. The click on any of these colored text allows one to jump to the resulting location.

What package I can use to for these features?

Shahzad
  • 1,297
  • 14
  • 19

1 Answers1

3

Although the answer already has been given in a comment by Juri Robl, I'd like to add some short sentences:

Yes, you get a linked PDF using the package hyperref. If you use texlive (and maybe as well with MikTeX), you get the documentation typing texdoc hyperref on the command line. The maintainer is Heiko Oberdiek, who is really active here.

There is one important thing to know and that is the reason for writing this answer (except that there is one question less without an answer): Make sure that \usepackage{hyperref} is the last package to be loaded. hyperref redefines a lot of things, so your code will probably wind up if you load hyperref somewhere else!


EDIT: The comment of Peter Grill is important as well: there are some packages, which have to be loaded after hyperref, see here: Which packages should be loaded after hyperref instead of before?enter link description here

Keks Dose
  • 30,892