[Tex/LaTex] Three figures positioned horizontally and vertically

epspositioning

I'm trying to get the following layout for three figures in LaTeX
enter image description here

However, thus far I'm not really getting anywhere. What I've found is a way to put them next to each other, but they are too large to fit next to each other. I used

\begin{figure}
    \centering
    \begin{subfigure}{0.33\textwidth}
        \centering
        \includegraphics[height=1.7in]{something.eps}
        \caption{}
    \end{subfigure}%
    ~
        \begin{subfigure}{0.33\textwidth}
        \centering
        \includegraphics[height=1.7in]{something.eps}
        \caption{}
    \end{subfigure}%
    ~ 
    \begin{subfigure}{0.5\textwidth}
        \centering
        \includegraphics[height=1.7in]{something.eps}
        \caption{}
    \end{subfigure}
    \caption{Some caption}
    \label{label}
\end{figure}

But this simply positions them horizontally. Could anyone help me figure out how to put the figures in the above layout?

Best Answer

enter image description here

\documentclass{article}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption,array}

\begin{document}

\begin{figure}
    \centering
    \begin{tabular}{cc}
    \begin{subfigure}{0.33\textwidth}
        \centering
        \includegraphics[height=1.7in]{figure-1}
        \caption{}
    \end{subfigure}%
    &
        \begin{subfigure}{0.33\textwidth}
        \centering
        \includegraphics[height=1.7in]{figure-1}
        \caption{}
    \end{subfigure}%
    \\
    % uncomment next line
    % \multicolumn{x}{c}{%
    \begin{subfigure}{0.5\textwidth}
        \centering
        \includegraphics[height=1.7in]{figure-1}
        \caption{}
    \end{subfigure}%}// <- uncomment
    % comment next line
    & \\
    \end{tabular}
    \caption{Some caption}
    \label{label}
\end{figure}
\end{document}
Related Question