Possible Duplicate:
Reference plain text
I want to reference an item in a description, without actually displaying the text of the specific item.
I have a description with labeled items
\begin{description}
\item[House\label{bld:house} is a building] \hfill \\
A house is a building...
\end{description}
And I would want to use something like this
House\ref{bld:house} is something I don't own.
So that the output looks like this
House is something I don't own.
But instead I get this
House is a building is something I don't own.
So it references the whole text within the item. How would I just have a reference with my own individual text, like in HTML (Google)?
And for some reason when I click on the reference it only jumps to the nearest section, but not exactly to the item.