[Tex/LaTex] Specific image layout

graphicspositioning

I can combine graphics with the following:

\begin{figure*}[ht]
\begin{center}$
\begin{array}{ccc}
\includegraphics{Figures/fig1.pdf}\\
\includegraphics{Figures/fig2.pdf}\\
\includegraphics{Figures/fig3.pdf}
\end{array}$
\end{center}
\end{figure*}

This combines the graphics specified into one figure where one graphic is placed under the other (which extend over both columns in the document). However, what I am trying to do is to have the first graphic to cover most of the page, and then have the second and third graphic on the same row but in different columns beneath it.

So, say if I had a matrix with 2 rows and 2 columns then the first graphic would be in the first row but extending over both columns and the second and third graphic would be in the second row, second and third column respectively. How can this be achieved?

Best Answer

you do not need an array for the images.

\begin{figure*}[ht]
\centering
\includegraphics{Figures/fig1.pdf}

\includegraphics{Figures/fig2.pdf} \includegraphics{Figures/fig3.pdf}
\end{figure*}

Otherwise use \multicolumn{2}[c}{\includegraphics{...}}