As we $\label{eq01}$ equations and $ref{eq01}$, after inserting a image where I mention the label? and how to refer the FIG?
A code I inserted in LaTeX for inserting Fig is:
\begin{figure}
\centering
\includegraphics[scale=0.40]{d2spherical.png}
% d2spherical.png: 800x300 pixel, 72dpi, 18x8 cm, bb=0 0 1142 479
\caption{Solution of the spherical equation for $D=2$}
\label{Fig:5}
\end{figure}
Please mention, where to refer and label.
\ref{Fig:5}. provided you keep the\labelafter the\caption, everything will be fine. it's good practice to make yourlabelsdescriptive rather than numeric. For example, you might be better served using\label{fig:sperical}. Also, you can (and probably should) omit the file extension in yourincludegraphicscommand. – cmhughes Aug 29 '13 at 02:38\refjust the same as you would an equation. See Why does an environment's label have to appear after the caption? – Werner Aug 29 '13 at 02:59\eqref{eq01}. (the code shown in the question won't work, as no command is given. probably a typo.) – barbara beeton Aug 29 '13 at 14:45