The code below is executing properly:
\begin{figure}
\includegraphics{name1}
\caption{Figure 1}\label{name1}
\end{figure}
However when I add width and height:
\begin{figure}
\includegraphics[width=15cm,height=6cm]{name1}
\caption{Figure 1}\label{name1}
\end{figure}
I get this error:
! Missing number, treated as zero.<to be read again>
How do I solve this problem?