General ⇒ Hyperlinks to Figures
Hyperlinks to Figures
I am trying to write my thesis using pdftex, and I've been using hyperref to get hyperlinks to citations, tables, figures, and sections. It works great when I'm linking to a table because it links to where the caption is at the top of the page, and the table is below. However, if I'm linking to a figure, the link takes me to a point where the caption is at the top of the page and the figure is above it, so, not visible. Is there a way to adjust this so the graphic that I'm linking to is visible. Perhaps if I could have the caption at the bottom of the page it would work better. Any help is appreciated.
NEW: TikZ book now 40% off at Amazon.com for a short time.
Re: Hyperlinks to Figures
Use the hypcap package additionally, e.g.:
\usepackage[...]{hyperref}
\usepackage[figure]{hypcap}
HTH,
Axel
\usepackage[...]{hyperref}
\usepackage[figure]{hypcap}
HTH,
Axel
Re: Hyperlinks to Figures
That's perfect, thanks very much.