This post provides Latex code examples for how to generate sub-figures with and without captions.
- Sub-figures with captions
\documentclass{article}
\usepackage{graphicx, caption, subcaption}
\begin{document}
This article is about ....
\begin{figure}
\begin{subfigure}{0.96\textwidth}
\includegraphics[width=\textwidth]{subfig1}
\caption{subfig 1 caption text here}
\end{subfigure}
\centering %note: this centering command applies to subfig1
\hfill
\begin{subfigure}{0.47\textwidth}
\includegraphics[width=\textwidth]{subfig2}
\caption{subfig 2 caption text here}
\end{subfigure}
\hfill
\begin{subfigure}{0.47\textwidth}
\includegraphics[width=\textwidth]{subfig3}
\caption{subfig 3 caption text here}
\end{subfigure}
\caption{the overall fig caption text here}
\label{fig:subfig_example} % Give a unique label
\end{figure}
\end{document}
- Sub-figures without caption
\documentclass{article}
\usepackage{graphicx}
\begin{document}
This article is about ....
%*For figures without sub-captions
\begin{figure}
\includegraphics[width=0.96\textwidth]{subfig1}
\centering
\hfill
\includegraphics[width=.48\textwidth]{subfig2}
\hfill
\includegraphics[width=.48\textwidth]{subfig3}
% figure caption is below the figure
\caption{figure caption text here}
\label{fig:subfig_example2} % Give a unique label
\end{figure}
\end{document}