I'm a bit confused as I read the TikZ manual.
Is there a opportunity to hyperref out of an externalized TikZ graphic into the main document?
When I compile the following code with pdflatex and --shell-escape and then do a make command and then again pdflatex, I get a main document without the hyperlink in the graph.
But when I compile it without externalize it works well.
Is there a solution for this Problem?
It would be great :-)
\documentclass{article}
\usepackage{hyperref}
\usepackage{tikz}
\usetikzlibrary{external}
\tikzexternalize[mode=list and make]
\begin{document}
\begin{tikzpicture}
\node {root}
child {node {\ref{eq:einstein}left}}
child {node {right}
};
\end{tikzpicture}
Gleichung Nr.\ref{eq:einstein}.
\newpage
\begin{equation}
\label{eq:einstein}
E = m \cdot c^2
\end{equation}
\end{document}


