LaTeXで複数枚の図を挿入する際、ひとつの図番号の中に(a), (b)と入れたいときはsubcaptionパッケージを使用する。以下をプリアンブル中に記述することでサブキャプションを使用できるようになる。
\usepackage{subcaption}
実装例
コード
\begin{figure}[h]
\centering
\begin{minipage}{0.43\columnwidth}
\centering
\includegraphics[width=\columnwidth]{サンプルa.pdf}
\subcaption{サンプルa}
\label{fig:サンプルa}
\end{minipage}
\hspace{5mm}
\begin{minipage}{0.43\columnwidth}
\centering
\includegraphics[width=\columnwidth]{サンプルb.pdf}
\subcaption{サンプルb}
\label{fig:サンプルb}
\end{minipage}
\caption{サンプル}
\label{fig:サンプル}
\end{figure}
ちなみにサブキャプションをつけない場合は以下のようになる。
コード
\begin{figure}[h]
\centering
\begin{minipage}{0.43\columnwidth}
\centering
\includegraphics[width=\columnwidth]{サンプルA.pdf}
\caption{サンプルA}
\label{fig:サンプルA}
\end{minipage}
\hspace{5mm}
\begin{minipage}{0.43\columnwidth}
\centering
\includegraphics[width=\columnwidth]{サンプルB.pdf}
\caption{サンプルB}
\label{fig:サンプルB}
\end{minipage}
\end{figure}