如何在图形环境中为 4 个子图添加不同的标题?

如何在图形环境中为 4 个子图添加不同的标题?

我想使用两列环境来放置 4 个子图。但我使用的是 Figure 环境。以下代码中的 * 有什么用处?如何在 figure 环境中为四个子图添加不同的标题。

\begin{figure}
\includegraphics[width=0.45\textwidth]{Fig1.PNG}
\hspace{0.05\linewidth}
\includegraphics[width=0.45\textwidth]{Fig2.PNG}
\\[.5\baselineskip]
\includegraphics[width=0.45\textwidth]{Fig3.PNG}
\hspace{0.05\linewidth}
\includegraphics[width=0.45\textwidth]{Fig4.PNG}
\caption{Figures}
\end{figure}

答案1

我不确定你想要什么。像这样:

在此处输入图片描述

代码:

\documentclass{article}
\usepackage{graphicx}
\usepackage{subfig}
\begin{document}
\begin{figure}[htbp]
\centering
\subfloat[Caption of a]{\label{fig:a}\includegraphics[width=0.45\linewidth]{example-image-a}}\qquad
\subfloat[Caption of b]{\label{fig:b}\includegraphics[width=0.45\linewidth]{example-image-b}}\\
\subfloat[Caption of c]{\label{fig:c}\includegraphics[width=0.45\textwidth]{example-image-c}}\qquad%
\subfloat[Caption of a]{\label{fig:d}\includegraphics[width=0.45\textwidth]{example-image-a}}%
\caption{Caption of figure}
\label{fig:myfig}
\end{figure}
\end{document}

相关内容