1

I want to know how to put 3 images in one column in Latex, so that it looks like the following format:

enter image description here

Hope someone can help me!

jaribeiro
  • 167

2 Answers2

3

You place three images in a column in just the same way as you'd place three letters, just add them in a single paragraph if you want them side by side, or in separate paragraphs if you want them one above the other. Here are three paragraphs with one image in each.

enter image description here

\documentclass{article}
\usepackage{graphicx}
\begin{document}

\centering

\includegraphics[width=.5\textwidth]{example-image}

\includegraphics[width=.5\textwidth]{example-image-a}

\includegraphics[width=.5\textwidth]{example-image-b}

\end{document}
David Carlisle
  • 757,742
2

I'm not absolutely sure what you mean with in one column. Because it looks like just two pictures beneath each other which doesn't necessarily imply that you actually need it column e.g. to display text on the side of the images. Although it's quite dirty you could probably just force the pictures on that location with [H]:

\usepackage{graphicx}

\begin{figure}[H]
    \includegraphics{gull.jpg}
\end{figure}
%do this 3 times

Another method would be to make subfigures:

\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}

\begin{figure}
    \begin{subfigure}
        \includegraphics[width=\textwidth]{gull.jpg}
    \end{subfigure}
    \begin{subfigure}
        \includegraphics[width=\textwidth]{gull.jpg}
    \end{subfigure}
    %and so on
\end{figure}

By using \textwidth the picture take the full width of the page and should therefore be below each other. The packages are used for subcaptions etc. if you need them. There's another way to do it with the package float, but i've never done that before. You might want to look at this post: Insert multiple figures in Latex.

I think this would also work by using minipages.

Octopus
  • 575
  • I suppose you also need to define the width per subfigure, in addition to the width of the figure itself. E.g. \begin{subfigure}{\columnwidth} – Alexander Apr 21 '22 at 09:49