0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【LaTeX】図のサブキャプションをつける方法

Posted at

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}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?