如何创建由 4 个子子图组成的图片,其中包含 4 个子子标题和 2 个子标题?

如何创建由 4 个子子图组成的图片,其中包含 4 个子子标题和 2 个子标题?

我想在 overleaf 中创建一个包含 4 个子图的页面,每个图都有一个子子标题?每两个子图都有自己的子标题,如下图所示: 在此处输入图片描述

答案1

有很多方法可以实现这一点。这是一个使用subfig包的示例:

\documentclass{article}
\usepackage{subfig}
\usepackage{mwe}

\begin{document}
\begin{figure}
\centering
\subfloat[title pic 1]{\includegraphics[width=0.4\textwidth]{example-image}}\hspace{0.5cm}
\subfloat[title pic 2]{\includegraphics[width=0.4\textwidth]{example-image}}\\
\caption*{A-picture (a) and (b)}
\subfloat[title pic 3]{\includegraphics[width=0.4\textwidth]{example-image}}\hspace{0.5cm}\subfloat[title pic 4]{\includegraphics[width=0.4\textwidth]{example-image}}\\
\caption*{B-picture (a) and (b)}
\caption{Figure title of all sub-pictures} 
\end{figure}
\end{document}

在此处输入图片描述

相关内容