I am having issues with my cross-references. I have a few cross references in which I want to use the \ref{blah} command before I have writting the \label{blah} command resulting in (??) appearring in the compiled file.
Here is an example:
Code: Select all
\documentclass[a4paper,12pt]{report}
\begin{document}
Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah (\ref{Blah}) blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah
\begin{table}[!htb]
\begin{tabular} {|ccc|}
\hline
x & y & z\\
x & y & z\\
x & y & z\\
x & y & z\\
x & y & z\\
\hline
\end{tabular}
\label{Blah}
\caption{blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah}
\end{table}
\end{document}
Is there any way of sorting it?