I'm new to LaTeX and I'm searching solve a problem with figures alignment. I've searched on the net for an example or a solution but haven't found nothing.
I want to build a figure with a main picture and two small sub-pictures on the right, as in the attachment. The only solution that is similar to what I want to do is:
Code: Select all
\begin{figure}
\begin{tabular}{cc}
\includegraphics[width=0.6\textwidth]{S11_vs_gap_in.png} &
\begin{tabular}{c}
\includegraphics[width=0.4\textwidth]{S11_frequency_vs_gap_in.png} \\
\includegraphics[width=0.4\textwidth]{S11_vs_Q.png}
\end{tabular}
\end{tabular}
\label{fig:gap_s11}
\end{figure}
Could someone help me to solve this problem?
Thanks
lasi