\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}
我有 10 个子图,想将它们一个接一个地对齐。但即使我放 3 个,它们在一页上也太满了,如何让它们显示在 5 页上,每页 2 个图,同时自动命名为图 2 的 (a)、(b)、(c).....。
答案1
以下 MWE 在每页上放置两个子图,同时保持子图编号连续,可以作为起点:
\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}