How can I have two figure side by side with two captions and in the floating format, like
fig. 10A. some caption fig. 10B. some caption
How can I have two figure side by side with two captions and in the floating format, like
fig. 10A. some caption fig. 10B. some caption
\documentclass{article}
\usepackage{subfig}
\usepackage[pdftex]{graphicx} %ifpdf
\makeatletter
\def\thesubfigure{Fig. \@arabic\c@figure\Alph{subfigure}.}
\makeatother
\begin{document}
\begin{figure}
\centering
\subfloat[Some caption]{\rule{.45\textwidth}{3cm}} %replace \rule... with \includegraphics[width=0.45\textwidth]{picname}
\hspace{2em}
\subfloat[Some other caption]{\rule{.45\textwidth}{3cm}} %idem
%\caption{Some caption title}
\end{figure}
\end{document}

subfig, or thesubcaptionpackages? – yo' Dec 14 '13 at 00:07Fig 10, Fig 11, this one wantsFig 10a, Fig 10b. – yo' Dec 14 '13 at 00:09subfig. Why not adding it as an answer? – Ruben Dec 14 '13 at 00:13subfigmyself, so I'm just leaving it to someone else ;) – yo' Dec 14 '13 at 00:15