1
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

はじめに

この記事では、subcaptionというLaTeXのpackageのPackage documentationを読みます。

そこにあった一部の例を列挙することにします。

前提

新しいバージョンのPackageでは、captionパッケージをロードする必要はありません
もしロードが必要なら、必ずsubcaptionパッケージの前にロードする必要があります。
captionパッケージへのオプションは、\captionsetupコマンドで可能だと思います。まだ確かめていない

Starting with version 1.4 the subcaption package requires at least version 3.1 of the caption package and loads it automatically. (Older versions of the subcaption package have required exactly the version of the caption package which was released with it.) If you need to use a specific version of the caption package you need to load it before the subcaption package

subcaptionboxを用いる

image.png

\begin{figure}
\centering
    \subcaptionbox{A cat\label{cat}}[.4\textwidth]{\includegraphics{cat}}
    \subcaptionbox{An elephant\label{elephant}}[.4\textwidth]{\includegraphics{elephant}}
    \caption{Two animals}\label{animals}
\end{figure}

captionboxを用いる

image.png

\begin{figure}
    \centering
    \captionbox{A cat\label{cat}}
    [.4\textwidth]{\includegraphics{cat}}%
    \captionbox{An elephant\label{elephant}}
    [.4\textwidth]{\includegraphics{elephant}}
\end{figure}

subcaptionblockを用いる

こっちは、TeXLive 2022以降を使っているユーザ向けになります。

image.png

\begin{figure}
    \centering
    \begin{subcaptionblock}{.4\textwidth}
        \centering
        \includegraphics{cat}
        \caption{A cat}\label{cat}
    \end{subcaptionblock}%
    \begin{subcaptionblock}{.4\textwidth}
        \centering
        \includegraphics{elephant}
        \caption{An elephant}\label{elephant}
    \end{subcaptionblock}%
    \caption{Two animals}\label{animals}
\end{figure}
1
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
1
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?