Please help me tell why the following code is not correct?
\documentclass[a4paper,12pt]{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}[htp]
\centering
\includegraphics[width=100mm]{lls.eps}
\hfill
\includegraphics[width=100mm]{AIC.eps}\\
\hfill
\includegraphics[width=100mm]{BIC.eps}\\
\end{figure}
\end{document}
or other code:
\documentclass[a4paper,12pt]{article}
\usepackage{graphicx}
%\usepackage{subfig}
\begin{document}
\begin{figure}
\centering
\label{figur}\caption{equation...}
\begin{tabular}{cp{2cm}c}
\includegraphics[width=60mm]{1.eps}& & \includegraphics[width=60mm]{lls.eps}\\
& & &\\
\includegraphics[width=60mm]{2.eps}& & \includegraphics[width=60mm]{AIC.eps}\\
& & &\\
\includegraphics[width=60mm]{3.eps}& & \includegraphics[width=60mm]{BIC.eps}\\
\end{tabular}
\end{figure}
\end{document}
\label{figur}\caption{equation...}use it the other way round, first thecaptionand then thelabel. Otherwise you'll get wrong references. – Herbert Jun 1 '11 at 20:17latexoderpdflatex? – Tobi Jun 1 '11 at 20:32oberdiekbundle help? – Stefan Kottwitz♦ Jun 18 '11 at 17:49