I have a TikZ picture with a node containing a minipage with an itemize environment; each item is a hyperref to other sections of the document.
When scaling the image (for example with \begin{tikzpicture}[scale=.7, transform shape] I've a strange behavior: links in itemize are not in the right place: they present a somewhat vertical offset, as if they don't scale as the rest of image.
Here the MWE:
\documentclass[a4paper]{article}
\usepackage{tikz}
\usepackage[pdftex]{hyperref}
\begin{document}
Here something interesting\label{text:interesting-one}
\newpage
Here something interesting, too\label{text:interesting-two}
\newpage
and here there are very very interesting stuff\label{text:interesting-three}
\newpage
\newpage
Now the problem: links rectangles have some offset, making links unusable in case of long itemize
\begin{figure}[htb]
\begin{tikzpicture}[scale=.7, transform shape]
\node at (0,0) (mynode) {
\begin{minipage}{4cm}
\begin{itemize}
\item \hyperref[text:interesting-one]{First link}
\item \hyperref[text:interesting-two]{Second link}
\item \hyperref[text:interesting-three]{Third link}
\item \hyperref[text:interesting-one]{First link again}
\item \hyperref[text:interesting-two]{Second link again}
\item \hyperref[text:interesting-three]{Third link again}
\end{itemize}
\end{minipage}
};
\end{tikzpicture}
\end{figure}
\end{document}
And here a snapshot of the problem

Note: This is evident using the default settings of hyperref package, which draws the red rectangle around links, but it took me some time to found it when only the text is coloured, i.e. when using \usepackage[linkcolor=blue,colorlinks=true]{hyperref}

tikz, it does not use the proper interface of pdfTeX for scaling (\pdfsave,\pdfsetmatrix,\pdfrestore). – Heiko Oberdiek Dec 14 '12 at 14:42