Spezielle Anordnungen von Unterfiguren

Spezielle Anordnungen von Unterfiguren

Ich muss meine Bilder so anordnen, wie in der beigefügten Abbildung gezeigt. Ich bitte um Ihre Hilfe.

Bildbeschreibung hier eingeben

Antwort1

Dies kann beispielsweise mit dem tikzPaket und der matrixBibliothek erreicht werden. Hier ist ein Dummy-Bild, das etwas Ähnliches wie in Ihrer Frage mit dem entsprechenden Ergebnis zeigt.

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

Bild, das das Ergebnis des obigen Codes zeigt

Nun musst du nur noch das \node [Pic] {};s durch ersetzen node [Pic] {\includegraphics[width=\Size]{<pic name>}};, wobei <pic name>der entsprechende Bildname ist, den das Paket findet graphicx. Meine Anmerkungen im Code reichen hoffentlich aus, damit du Größen und Abstände selbst anpassen kannst.

Bitte beachten Sie, dass die standaloneDokumentklasse keine Umgebung bereitstellt figure, weshalb ich diese Codezeilen kommentiert habe.

Antwort2

Schauen Sie nach, ob es das ist, wonach Sie suchen:

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

Bildbeschreibung hier eingeben

verwandte Informationen