So I am limited via some style doc on how image elements with captions look like:
some code like in here does what they do:
\renewcommand{\@makecaption}[2]{%
\abovecaptionskip=-5pt
\belowcaptionskip=-27pt
\vspace{\abovecaptionskip}%
\sbox{\@tempboxa}{{\footnotesize {\textbf{#1.}} #2}}
\ifdim \wd\@tempboxa > \hsize
\begin{center} {\footnotesize {\textbf{#1.}} #2} \par \end{center}
\else
\global\@minipagefalse
\hbox to \hsize {\footnotesize \hfil{\textbf{#1.}} #2\hfil}%
\fi
\vspace{\belowcaptionskip}}
\newcommand{\Figure}[3]{\begin{figure}[h]\begin{center}\includegraphics[width=#1]{#2}\caption{#3\vspace{ 1cm}}\end{center}\end{figure}}
\newcommand{\WrapFigure}[5]{\begin{wrapfigure}[#1]{l}{#2}
\includegraphics[width=#3]{#4}\caption{#5}
\end{wrapfigure}\vspace{0.3cm}}
\newcommand{\WrapFigureR}[5]{\begin{wrapfigure}[#1]{r}{#2}
\includegraphics[width=#3]{#4}\caption{#5}
\end{wrapfigure}\vspace{0.3cm}}
I want to place 2 images with captions like in here:

I tried this:
\begin{center}
\begin{array}
\Figure{0.6\textwidth}{d2.eps}{ ~ \label{fig4}} &
\Figure{0.6\textwidth}{d1.eps}{ ~ \label{fig5}}
\end{array}
\end{center}
But failed. So how to make two custom image layout elements live in one row?

