Possible Duplicate:
Two figures side by side
How do I put two different pictures side by side?
I'm using the figure environment.
My code is:
\begin{figure}[h!]
\centering
\includegraphics[scale=0.2,keepaspectratio=true]{fase5.pdf}
\caption{Figura experimental. Nome fase4.pdf}
\label{fase1}
\end{figure}
After the response from @flh I tried the code below and failed.
\begin{figure}[h!]
\centering
\includegraphics{left}[scale=0.2,keepaspectratio=true]{fase5.pdf}
\caption{Figura experimental. Nome fase4.pdf}
\label{fase1}
\includegraphics{rigth}[scale=0.2,keepaspectratio=true]{fase5.pdf}
\caption{Figura experimental. Nome fase4.pdf}
\label{fase2}
\end{figure}
Best Answer
You may have become confused by @lfh's intended meaning of "left" and "right". The following MWE (minimum working example) explains the process in detail. The setup assigns each graphic a width of
0.48\textwidth
; change this setup to meet your needs.