Using the hyperref package, I have been able to style and make all my links clickable in my document:
\usepackage{hyperref}
\usepackage{xcolor}
\hypersetup{
colorlinks = true,
allcolors = {blue} %Change to black if we want them invisible
}
Using this codes enables me to style and click[1] the 1 in order to navigate to my bibliography. However, I also want my links to my figures to be clickable, so when I write (see table 1) then 1 should be a link to the figure. I also noticed that my styling seem to affect my table of contents, so it is completely blue at the moment.
So I'm wondering how I can apply separate styling to my table of contents and my figures?
\ref(as explained in, e.g., the 2nd link in the answer by @Yappari below) then a hyperlink is created automatically - if it is not, then please provide a small example document that reproduces the problem. With thehyperrefpackage you can also use\autorefinstead of\ref, which will add the word Figure before the number (and this word will also be part of the link). – Marijn Apr 30 '18 at 14:30