LaTeX Beginner's GuideHow can I put two images next to each other?

Questions and answers about the LaTeX Beginner's Guide
Reader

How can I put two images next to each other?

Post by Reader »

In Chapter 6, Inserting images, in the section Arranging several images, I see that there are several packages for placing images next to each other or above each other.

Which one of the mentioned packages shall I choose?

Can you show an simple code example?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics
User avatar
Stefan Kottwitz
Site Admin
Posts: 10266
Joined: Mon Mar 10, 2008 9:44 pm

How can I put two images next to each other?

Post by Stefan Kottwitz »

I prefer using the subcaption package, since it's the perfect companion to the excellent caption package by the same author.

Here is a quick example:

Code: Select all

\documentclass{article}
\usepackage{graphicx}
\usepackage{subcaption}
\begin{document}
\begin{figure}[ht]
  \subcaptionbox*{First subfigure}[.45\linewidth]{%
    \includegraphics[width=\linewidth]{example-image-a}%
  }%
  \hfill
  \subcaptionbox*{Second subfigure}[.45\linewidth]{%
    \includegraphics[width=\linewidth]{example-image-b}%
  }
  \caption{Two images}
\end{figure}
\end{document}
This gives us:
subfigures.png
subfigures.png (19.92 KiB) Viewed 255183 times
There are further examples in the LaTeX Cookbook, Chapter 4, Working with Images.

Stefan


Last bumped by Anonymous on Mon Oct 18, 2021 6:45 pm.
LaTeX.org admin
Post Reply