サブ図の特別な配置

サブ図の特別な配置

添付の図のように写真を配置する必要があります。ご協力をお願いします。

ここに画像の説明を入力してください

答え1

これは、たとえばtikzパッケージとmatrixライブラリを使用して実現できます。これは、質問と同様のものを対応する結果とともに示すダミー画像です。

% works with tikz v3.0.1a
\documentclass[border=2mm]{standalone}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{tikz}
    \usetikzlibrary{
        matrix,
    }
    % define size of rectangular pictures
    \pgfmathsetlengthmacro{\Size}{25mm}
\begin{document}
%\begin{figure}
    \begin{tikzpicture}[
        Pic/.style={
            minimum size=\Size,
            inner sep=0pt,
            % this is just to show something
            % comment the two following lines or adjust them accordingly
            draw=black!50,
            fill=black!25,
        },
    ]
        \matrix [
            % typeset nodes in math mode
            matrix of math nodes,
            % use a smaller font for the nodes
            node font=\scriptsize,
            % rotate all nodes in the first column
            column 1/.append style={
                every node/.append style={
                    rotate=90,
                },
            },
            % set the separations of the columns and rows
            row sep=2.5mm,
            column sep=2.5mm,
        ] {
                    &[-2ex] N = 150 & N = 200 & N = 250 \\[-2ex]
            t = 0   & \node [Pic] {};
                        & \node [Pic] {};
                            & \node [Pic] {}; \\
            t = 100 & \node [Pic] {};
                        & \node [Pic] {};
                            & \node [Pic] {}; \\
            t = 200 & \node [Pic] {};
                        & \node [Pic] {};
                            & \node [Pic] {}; \\
        };
    \end{tikzpicture}
%    \caption{Just a dummy caption}
%        \label{fig:dummy}
%\end{figure}
\end{document}

上記コードの結果を示す画像

\node [Pic] {};ここで、 を に置き換えるだけです。 はnode [Pic] {\includegraphics[width=\Size]{<pic name>}};パッケージ<pic name>で見つかる対応する画像名ですgraphicx。コード内の私のコメントが十分であれば、サイズと距離を自分で変更できるでしょう。

standaloneドキュメントクラスは環境を提供しないためfigure、これらのコード行をコメント化していることに注意してください。

答え2

これがあなたが探しているものであれば、ご覧ください:

\documentclass{article}
\usepackage{array,graphicx}

\begin{document}
    \begin{tabular}{c*{3}{>{\centering\arraybackslash}p{0.3\textwidth}}}
    &   $N=150$ &   $N=150$ &   $N=250$                             \\
\rotatebox{90}{\qquad$t=0$}
            &   \includegraphics[width=\linewidth]{example-image-a}
        &   \includegraphics[width=\linewidth]{example-image-b}
            &   \includegraphics[width=\linewidth]{example-image-c}   \\
\rotatebox{90}{\qquad$t=100$}
            &   \includegraphics[width=\linewidth]{example-image-a}
        &   \includegraphics[width=\linewidth]{example-image-b}
            &   \includegraphics[width=\linewidth]{example-image-c}   \\
\rotatebox{90}{\qquad$t=200$}
            &   \includegraphics[width=\linewidth]{example-image-a}
        &   \includegraphics[width=\linewidth]{example-image-b}
            &   \includegraphics[width=\linewidth]{example-image-c}   \\
    \end{tabular}
\end{document}

ここに画像の説明を入力してください

関連情報