I am currently a university student studying engineering. I have been a user of LaTeX for a few years now and cannot work out how to solve the following issue.
In Australia, there are standards which describe the way in which referencing within technical drawings should be done. I am trying to create a method within LaTeX to allow me to create a set of drawings (all TikZ pictures) where sections, elevations and details can all be navigated between within the document (using the hyperref package). Unfortunately, I am currently receiving an error stating that the labels are undefined and thus the referencing breaks down. I think this is because the labels are not being associated with a 'figure' type environment.
Ideally, these links would appear as text that, when clicked, would take the viewer to the page on which the section is shown. In addition, and if possible, it would also be great if reference could be made to the page on which the section is shown.
I have included below a minimal example that shows my thoughts. Perhaps someone has already managed to solve this issue.
\documentclass{report}
\usepackage{tikz,hyperref}
\begin{document}
\begin{tikzpicture}
\node at ( 20 mm , 20 mm ) {Hello World!\label{hello}} ;
\end{tikzpicture}
\newpage
\begin{tikzpicture}
\node at (20 mm , 20 mm ) {Reference\ref{hello}};
% This (hopefully) would make it possible to link
% from Page X to Y within the .pdf document.
\end{tikzpicture}
\end{document}
Thank you to everyone who takes the time to read this and I look forward to receiving your response.

\pageref{hello}without problem. I work with pgf 2.1 cvs and I have the latest hyperref package – Alain Matthes Mar 27 '11 at 06:40