¿Cómo poner varias subfiguras en una figura sin avisar demasiado?

¿Cómo poner varias subfiguras en una figura sin avisar demasiado?
    \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}
    

Tengo 10 subfiguras quiero alinearlas cada una por cada una. Pero incluso si pongo 3, están sobrellenados en una página, cómo hacer que se muestren en 5 páginas, cada página tiene 2 figuras mientras se denominan automáticamente como (a), (b), (c)..... de la figura 2.

Respuesta1

El siguiente MWE, que coloca dos subfiguras en cada página, manteniendo la numeración de las subfiguras continua, podría servir como punto de partida:

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

ingrese la descripción de la imagen aquí

información relacionada