Wie kann ich mehrere Unterfiguren in eine Figur einfügen, ohne dass es zu einer Überfüllungswarnung kommt?

Wie kann ich mehrere Unterfiguren in eine Figur einfügen, ohne dass es zu einer Überfüllungswarnung kommt?
    \begin{figure}
        \centering
        \begin{subfigure}[b]{1\textwidth}
                \centering
                \includegraphics[width=1.3\textwidth]{Whole Tweets of 4 TopicsRetweeting Behaviourdaily.pdf}
                \caption{relative scaled retweets counts of human users and bots}
             \label{fig:2a}
        \end{subfigure}
        \begin{subfigure}[b]{1\textwidth}
                \centering
                \includegraphics[width=1.3\textwidth]{Whole Tweets of 4 TopicsRetweeting BehaviourdailyReScaled.pdf}
                \caption{scaled retweets counts of human users and bots}
             \label{fig:2b}
        \end{subfigure}
        \begin{subfigure}[b]{1\textwidth}
                \centering
                \includegraphics[width=1.3\textwidth]{Whole Tweets of 4 TopicsRetweeting BehaviourdailyReScaled.pdf}
                \caption{scaled retweets counts of human users and bots}
             \label{fig:2b}
        \end{subfigure}
        \caption{caption}
    \label{fig 2:three graphs}


\label{fig: 2}       
\end{figure}
    

Ich habe 10 Unterabbildungen, die ich einzeln ausrichten möchte. Aber selbst wenn ich 3 einfüge, sind sie auf einer Seite überfüllt. Wie kann ich sie auf 5 Seiten anzeigen, jede Seite mit 2 Abbildungen, während sie automatisch als (a), (b), (c) ... von Abbildung 2 benannt werden?

Antwort1

Das folgende MWE, das auf jeder Seite zwei Unterabbildungen platziert und dabei die Nummerierung der Unterabbildungen fortlaufend beibehält, könnte als Ausgangspunkt dienen:

\documentclass{article}
\usepackage{graphicx}
\usepackage{subcaption}
\begin{document}
    \begin{figure}
        \begin{subfigure}[b]{1\textwidth}
            \includegraphics[width=\textwidth]{example-image-16x9}
            \caption{relative scaled retweets counts of human users and bots}
            \label{fig:2a}
        \end{subfigure}
        \begin{subfigure}[b]{1\textwidth}
            \includegraphics[width=\textwidth]{example-image-16x9}
            \caption{scaled retweets counts of human users and bots}
             \label{fig:2b}
        \end{subfigure}
        \caption{figure caption}
        \label{fig:figure}
    \end{figure}
    
    \begin{figure}
        \continuedfloat
        \begin{subfigure}[b]{1\textwidth}
            \includegraphics[width=\textwidth]{example-image-16x9}
            \caption{scaled retweets counts of human users and bots}
            \label{fig:2c}
        \end{subfigure}
        \begin{subfigure}[b]{1\textwidth}
            \includegraphics[width=\textwidth]{example-image-16x9}
            \caption{scaled retweets counts of human users and bots}
            \label{fig:2d}
        \end{subfigure}
        \caption{caption - continued from previous page}   
    \end{figure}
    
    \begin{figure}
        \continuedfloat
        \begin{subfigure}[b]{1\textwidth}
            \includegraphics[width=\textwidth]{example-image-16x9}
            \caption{scaled retweets counts of human users and bots}
            \label{fig:2e}
        \end{subfigure}
        \begin{subfigure}[b]{1\textwidth}
            \includegraphics[width=\textwidth]{example-image-16x9}
            \caption{scaled retweets counts of human users and bots}
            \label{fig:2f}
        \end{subfigure}
        \caption{caption - continued from previous page}   
    \end{figure}
    
    \begin{figure}
        \continuedfloat
        \begin{subfigure}[b]{1\textwidth}
            \includegraphics[width=\textwidth]{example-image-16x9}
            \caption{scaled retweets counts of human users and bots}
            \label{fig:2g}
        \end{subfigure}
        \begin{subfigure}[b]{1\textwidth}
            \includegraphics[width=\textwidth]{example-image-16x9}
            \caption{scaled retweets counts of human users and bots}
            \label{fig:2h}
        \end{subfigure}
        \caption{caption - continued from previous page}   
    \end{figure}
    
    \begin{figure}
        \continuedfloat
        \begin{subfigure}[b]{1\textwidth}
            \includegraphics[width=\textwidth]{example-image-16x9}
            \caption{scaled retweets counts of human users and bots}
            \label{fig:2i}
        \end{subfigure}
        \begin{subfigure}[b]{1\textwidth}
            \includegraphics[width=\textwidth]{example-image-16x9}
            \caption{scaled retweets counts of human users and bots}
            \label{fig:2j}
        \end{subfigure}
        \caption{caption - continued from previous page}   
    \end{figure}
    
\end{document}

Bildbeschreibung hier eingeben

verwandte Informationen