I found one way of doing this using the bookmark package, however this requires that I manually insert the bookmark after each figure/table, and copy the caption to the bookmark. Does anybody know a smarter way of doing this?
Thanks!
Here is a short version of my current code:
Code: Select all
\documentclass[twoside]{article}
\usepackage[linktocpage=true,bookmarksnumbered=true]{hyperref}
\usepackage{bookmark}
\begin{document}
\section{Figures}
\begin{figure}
\hypertarget{fig}{}
\includegraphics[width=\textwidth]{figure}
\caption{Caption text}
\end{figure}
\bookmark[rellevel=1,keeplevel,dest=fig]{Figure \thefigure{} Caption text}
\end{document}