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?
LaTeX Beginner's Guide ⇒ How can I put two images next to each other?
- Stefan Kottwitz
- Site Admin
- Posts: 10275
- Joined: Mon Mar 10, 2008 9:44 pm
How can I put two images next to each other?
I prefer using the
Here is a quick example:
This gives us:
There are further examples in the LaTeX Cookbook, Chapter 4, Working with Images.
Stefan
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}
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