I have two figures I want them to be side-by-side, and I have two issues:
1) How to make both figures have the same size? I know that dimensions are not the same for both figures, but how can I make them the same? (both figures are in pdf format)
2) I want to include one caption for both figures.. say, Figure 1, but underneath the figure on the left side I want to put (a), and underneath the figure on right side I want to put (b).. so we have figure 1(a) and Figure 1(b).
This is ehat I have so far:
\begin{figure}
\centering
\mbox{\subfigure{\includegraphics[scale=0.5]{Figure1_a.pdf}
\quad
\subfigure{\includegraphics[scale=0.5]{Figure1_b.pdf} }}}
\caption{caption for figure 1}
\label{fig12}
\end{figure}

figureenvironment is about dealing with figures. Your question is more specific. It would be nice if you could reflect that in the title. Also it would be nice if you could turn your code into a minimum working example. – Feb 11 '13 at 08:37