Possible Duplicate:
Where to put the \label on a figure environment?
I'm having a problem with referencing figures in LaTeX. I have the following text:
\begin{figure}[H]
\center
\label{fig:enn1015}
\includegraphics[scale=0.40]{imagens/outputs/ENN_10_15.eps}
\caption{ENN unbalanced 10\%}
\end{figure}
The figure \ref{fig:enn1015} (...)
For some reason, the figure caption is:
Figure 3.5 Enn unbalanced 10%
But the text is:
The figure 3.2.1 (...)
Instead of:
The figure 3.5
It is printing the chapter.section.subsection the figure is in, and not the figure. Can anybody help me?