Thanks - using linktocpage somehow haven't occurred to me. It doesn't do exactly what i want to do, but it keeps the same functionality. What i wanted to do, was to make all the entries in LoF looking like the second one in this example
Code: Select all
\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[margin=2cm]{geometry}
\usepackage[font=small,labelfont=bf,tableposition=top]{caption}
\usepackage{blindtext}
\usepackage{hyperref}
\begin{document}
\listoffigures
\blinddocument
\begin{figure}[!ht]
\centering
\rule{6.4cm}{3.6cm}
\caption{Dummy figure with citation \cite{foo}}\label{fig:dummy}
\end{figure}
\begin{figure}[!ht]
\centering
\rule{6.4cm}{3.6cm}
\caption{Dummy figure without citation}\label{fig:dummy2}
\end{figure}
\clearpage
\begin{thebibliography}{9}
\bibitem{foo} Foo bar
\end{thebibliography}
\end{document}
I wanted to do it this way, cause on pdf viewers that doesn't colour links (eg. Acrobat Reader) it might be a bit difficult for a reader to figure out that clicking on a number will take him to an image - having whole line as link would be much more intuitive.
Anyway thanks - this solution is good enough.