I want to display 3 figures as shown on the picture: 2 in the same column and the third one on the right column. My document isnt in columns.
I tried things with subfigure, but i only achieved to place 2 figures in a same row
I want to display 3 figures as shown on the picture: 2 in the same column and the third one on the right column. My document isnt in columns.
I tried things with subfigure, but i only achieved to place 2 figures in a same row
Try this code:
\documentclass{book}
\usepackage{graphicx}
\usepackage{lipsum,mwe}
\begin{document}
\lipsum[1]\
\begin{table}[h!]
\caption{Table with 3 graphs}
\begin{tabular}{l l}
\parbox{2in}{\includegraphics[width=2in,height=1in]{image-a}\\ \includegraphics[width=2in,height=1in]{image-b}} &\parbox{2in}{\includegraphics[width=2in,height=2in]{image-c}}\\
\end{tabular}
\end{table}
\end{document}
The output:
EDIT:
If you want captions below each subfigure consider this modified code:
\documentclass{book}
\usepackage{graphicx}
\usepackage{lipsum,mwe}
\begin{document}
\lipsum[1]\
\begin{table}[h!]
\begin{center}
\caption{Table with 3 graphs}
\begin{tabular}{l l}
\parbox{2in}{\includegraphics[width=2in,height=1in]{image-a}\ (a) sinus graph\ \includegraphics[width=2in,height=1in]{image-b}\(b)cosinus graph} &\parbox{2in}{\includegraphics[width=2in,height=2.2in]{image-c}\ (c) tangent graph}\
\end{tabular}
\end{center}
\end{table}
\end{document}
and his output:
minipages. – Zarko Feb 15 '22 at 17:16