1. Introduction

LaTeX is a powerful typesetting tool for creating documents, particularly used in academia and research. When adding figures, we use captions as their concise descriptions.

A common requirement when working with figures in LaTeX is to define multiple figures with the same caption. In this tutorial, we’ll explore different ways of defining multiple figures with the same caption in LaTeX.

2. Benefits of Caption Sharing

A typical use case is when we have a series of subfigures that should be presented together, e.g., the results for different values of a parameter.

There are several benefits of caption sharing:

  • When presenting related images or plots, having a common caption enhances visual clarity. It helps readers understand the relationship between the figures and establishes a clear context for their interpretation
  • We ensure consistency in the presentation of information
  • When multiple figures share the same caption, cross-referencing becomes more efficient since we can reference all the figures collectively with one reference instead of listing several references
  • We avoid repetition since we don’t repeat the same caption or text for each figure. This allows for efficient use of space, as it reduces clutter in our document

LaTeX provides subcaption, subfloat, and minipage packages for creating and managing subfigures. There’s also the subfigure package, but it isn’t actively maintained.

3. The subcaption Package

To add a subfigure, we use the subfigure environment:

\begin{subfigure}[position][height]{width}
    % contents
\end{subfigure}

We use three arguments:

  • position specifies the vertical alignment of the subfigure within the larger figure (t is for top-aligned, b for bottom-aligned, and c for centered) and is an optional argument. If no position is specified, the subfigure is centered vertically within the parent figure
  • width defines the width of the subfigure. For example, 0.5\textwidth sets the subfigure’s width to half the text width
  • height specifies the height; it’s also optional

Each image is included using the \includegraphics command. We can specify the caption and the label for each subfigure.

Usually, we set only the width and let the height be scaled proportionally. So, most of the time, we won’t specify the height argument.

To work properly, subfigure is used within the figure environment, whose caption we set using the regular \caption command.

3.1. Width of Subfigure

The width of a subfigure is determined by the width specified in the subfigure environment. However, \includegraphics can also specify width:

\begin{subfigure}[position]{subfigure_width}
    \includegraphics[width=included_width]{filename}
\end{subfigure}

The subfigure is set to occupy the specified value of subfigure_width. For example, setting the value of subfigure_width to 0.32\linewidth means 32% of the line width. What happens if \includegraphics also specifies the width of the included image?

In general, the width specified by \includegraphics only determines the size of the image within the subfigure_width. If we use width=\linewidth in \includegraphics, the actual width will correspond to the one set in the environment.

3.2. Horizontal Placement

Let’s start with a simple case of adding subfigures horizontally. Here, we must ensure that the width doesn’t exceed that of our LaTeX document.

As an example, let’s say we have three images: car1.jpg, car2.jpg, and car3.jpg. We can show them side by side:

\begin{figure}
	\centering
	\begin{subfigure}{0.3\linewidth}
		\includegraphics[width=\linewidth]{car1.jpg}
		\caption{Yellow color}
		\label{fig:subfigA}
	\end{subfigure}
	\begin{subfigure}{0.3\linewidth}
		\includegraphics[width=\linewidth]{car2.jpg}
		\caption{Red color}
		\label{fig:subfigB}
	\end{subfigure}
	\begin{subfigure}{0.3\linewidth}
	        \includegraphics[width=\linewidth]{car3.jpg}
	        \caption{Green color}
	        \label{fig:subfigC}
         \end{subfigure}
	\caption{Showing three cars in different colors horizontally.}
	\label{fig:subfigures}
\end{figure}

and get the following output:

subfigures multiple row horizontal

 

We added each image as a standalone subfigure and set one caption and a label for all of them. Additionally, we specified individual captions and labels for subfigures.

3.3. Vertical Placement

We can also add images vertically. To do this, we can use the above LaTeX codes and use \vfill or \\ after each subfigure to force a new row:

subfigures multiple row vertically

 

3.4. Adding Subfigures with Horizontal and Vertical Alignment

We can also organize images in a grid.

Let’s say we want to show four images in a 2\times 2 layout. To do so, we combine the approaches for horizontal and vertical placement:

\begin{figure}
      \centering
	   \begin{subfigure}{0.45\linewidth}
		\includegraphics[width=\linewidth]{cars/image1}
		\caption{Blue car}
		\label{fig:subfig1}
	   \end{subfigure}
	   \begin{subfigure}{0.45\linewidth}
		\includegraphics[width=\linewidth]{cars/image2}
		\caption{Speed}
		\label{fig:subfig2}
	    \end{subfigure}
	\vfill
	     \begin{subfigure}{0.45\linewidth}
		 \includegraphics[width=\linewidth]{cars/image3}
		 \caption{Red car}
		 \label{fig:subfig3}
	      \end{subfigure}
	       \begin{subfigure}{0.45\linewidth}
		  \includegraphics[width=\linewidth]{cars/image4}
		  \caption{Performances}
		  \label{fig:subfig4}
	       \end{subfigure}
	\caption{Comparing blue car vs. red car.}
	\label{fig:subfigures4}
\end{figure}

which generates:

subfigures 2row 2column

 

The rule is to end each row with \vfill or \\.

3.5. Multiple Images in the Same subfigure Environment

For example, let’s say we have several images, among which some are similar. We can insert similar images into one subfigure using multiple \includegraphics commands:

\begin{figure}
     \centering
	\begin{subfigure}{0.45\linewidth}
	    \includegraphics[width=0.45\linewidth]{cars/blue1}
	    \includegraphics[width=0.45\linewidth]{cars/blue2}\\
	    \includegraphics[width=0.45\linewidth]{cars/blue3}
            \includegraphics[width=0.45\linewidth]{cars/blue4}
	    \caption{Blue car}
	     \label{fig:subfig1}
	\end{subfigure}
	\begin{subfigure}{0.45\linewidth}
	    \includegraphics[width=\linewidth]{cars/performance}
	    \caption{Speed}
	    \label{fig:subfig2}
	\end{subfigure}
    \vfill
	\begin{subfigure}{0.45\linewidth}
	     \includegraphics[width=0.45\linewidth]{cars/red1}
	     \includegraphics[width=0.45\linewidth]{cars/red2}\\
	     \includegraphics[width=0.45\linewidth]{cars/red3}
	     \includegraphics[width=0.45\linewidth]{cars/red4}
	     \caption{Red car}
	     \label{fig:subfig3}
	\end{subfigure}
	\begin{subfigure}{0.45\linewidth}
	    \includegraphics[width=\linewidth]{cars/barplot}
	    \caption{Performances}
	    \label{fig:subfig4}
        \end{subfigure}
     \caption{Comparing blue car vs. red car, showing multiple sides.}
     \label{fig:subfigures2}
\end{figure}

which gives us:

subfigures 12images

We have four subfigures, but two of them are composite and contain multiple images instead of only one.

4. minipage

The syntax of the minipage environment is similar to that of subfigure:

\begin{minipage}[position][height]{subfigure_width}
% subfigure contents
\end{minipage}

The position specifies the vertical alignment of the subfigure within the larger figure and is optional. The subfigure_width defines the width of the subfigure. The rules about width are the same as for subfigure. The height option set the height of the minipage. For example, setting height as 3in means will set a minipage height to 3 inches vertically.

This environment is native to LaTeX but needs subcaption if we want to show sub-captions.

4.1. Adding Subfigures with Horizontal and Vertical Alignment

We can re-create any of the previous figures shown. As a demonstration, let’s re-create the grid example using the minipage environment:

\begin{figure}
	\centering
	\begin{minipage}{0.45\linewidth}
	     \includegraphics[width=\linewidth]{image1.jpg}
	      \subcaption{Blue car}
	      \label{fig:subfig1}
	\end{minipage}
	\begin{minipage}{0.45\linewidth}
	    \includegraphics[width=\linewidth]{image2.jpg}
	    \subcaption{Speed}
	    \label{fig:subfig2}
        \end{minipage} \\	
	\begin{minipage}{0.45\linewidth}
	    \includegraphics[width=\linewidth]{image3.jpg}
	    \subcaption{Red car}
	\label{fig:subfig3}
         \end{minipage}
         \begin{minipage}{0.45\linewidth}
	    \includegraphics[width=\linewidth]{image4.jpg}
	    \subcaption{Performances}
	\label{fig:subfig4}
         \end{minipage}
\caption{Comparing blue car vs. red car.}
\end{figure}

to generate the following output

grid fig5

 

The first two subfigures are horizontally aligned and in the first row. By simply adding \vfill or \\  at the end of the second minipage environment, we instruct LaTeX to place the remaining two subfigures in the second row.

We use \subcaption from the subcaption package to show sub-captions inside a mini page.

5. The subfig Package

The subfig package offers the \subfloat command:

\subfloat[ caption]{body}

Its arguments are:

  • caption, which defines the subfigure’s caption
  • body, which includes an image and, optionally, its label.

We can use \subfloat to add a subfigure:

\begin{figure}
	\centering
	\subfloat[Caption]{\includegraphics[0.3\linewidth]{car1.jpg}
         \label{fig:subfig1}}
\end{figure}

We specify the subfigure’s caption as the optional argument. Then, we add its body with \includegraphics, in which we specify the width and the label.

After that, we can use commands like \hspace to add horizontal spacing between the subfigures. Additionally, we can use \\[xpt]  to add vertical spacing of x pt between two rows of subfigures, which results in vertical separation.

Unlike the subcaption and minipage environments, the subfloat command doesn’t specify the width of the subfigure. Instead, we use \includegraphics to set it.

5.1. Example

Let’s re-create the grid example:

\begin{figure}
    \centering
	\subfloat[Blue car]{\includegraphics[width=0.45\linewidth]{image1.jpg}\label{fig:subfig1}}
	\subfloat[Sped]{\includegraphics[width=0.45\linewidth]{image2.jpg}\label{fig:subfig2}} \\
	\subfloat[Red car]{\includegraphics[width=0.45\linewidth]{image3.jpg}\label{fig:subfig3}}
        \subfloat[Performances]{\includegraphics[width=0.45\linewidth]{image4.jpg}\label{fig:subfig4}}
    \caption{Comparing blue car vs. red car.}
    \label{fig:subfigures}
\end{figure}

to generate the following output

grid fig6

 

As we see, the advantage of this method is that we can use a single line of code to insert an image, add a caption, and label it.

6. Cross-Referencing, Labeling, and Custom Caption in LaTeX

When defining multiple plots or figures with the same caption in LaTeX, it is essential we use proper labeling and cross-referencing techniques.

By using the \label and \ref commands, we can create references to individual subfigures, making it easier for us to navigate the document and reference the relevant images later. However, we can also label the entire figure and reference all the subfigures together.

Captions accompanying figures provide description and context. LaTeX allows various formatting options in the caption package. We can customize our caption style and fonts in LaTeX. For example, the following LaTeX code:

\usepackage{caption}
\captionsetup[figure]{font={small, it, sf}}

sets the caption font to a small size, italic style, and sans-serif family.

We can customize the caption format by changing the label separator, adding prefix or suffix text, or altering the alignment. To do this, we use the following code:

\captionsetup[figure]{labelsep=colon, justification=centering, prefix=Figure: }

7. Subcaption vs. Minipage vs. Subfig

The main differences between the subcaption, subfig, and minipage approaches are as follows:

Rendered by QuickLaTeX.com

For all the three approaches we described, their subfigure environment/command (i.e., subfigure, minipage, and subfloat) must be inside a figure environment if we want subfigures to share the overall caption.

8. Conclusion

In this article, we described how to use subcaption, minipages, and subfig packages to define multiple figures with the same caption in LaTeX. Using the same caption enhances the clarity and organization of LaTeX documents.

Comments are open for 30 days after publishing a post. For any issues past this date, use the Contact form on the site.