I want the figure to look like the following. Cant figure out how to do that using graphicx or subfloat. :s

please help :)
After the discussions:
\begin{figure}[htb]
\begin{minipage}{0.5\textwidth}
\includegraphics[width=.9\textwidth]{Fig3a}
\end{minipage}%
\hfill
\begin{minipage}{.5\textwidth}
\includegraphics[width=.9\textwidth]{Fig3b}
\end{minipage}
\begin{minipage}{.5\textwidth}
\includegraphics[width=.9\textwidth]{Fig3c}
\end{minipage}%
\hfill
\begin{minipage}{.5\textwidth}
\includegraphics[width=.9\textwidth]{Fig3d}
\end{minipage}
\begin{minipage}{.5\textwidth}
\includegraphics[width=.9\textwidth]{Fig3e}
\end{minipage}%
\hfill
\begin{minipage}{.5\textwidth}
\caption{caption stuff}
\end{minipage}%
\label{fig3}
\end{figure}
but this still gives the caption at the end and not in the 6th box
FYI: I am using the svjour3 document
Also now I think if the fig 3 a comes alone and bcde come in a 2x2 pattern would be the best.
OK I finally did the above using the tabular
Thanks ppl :)



tabularenvironment... – jub0bs Oct 04 '13 at 09:14\captioncauses problems if used "naked" in atabularcell. Putting it in a\multicolumn{1}{...}{...}, as in Harish Kumar's answer, solves obviates those problems. – jub0bs Oct 04 '13 at 11:25