I'm having difficulties arranging my 4 figures in a 2*2 and have them appear on different pages.
This is what it looks like: https://i.stack.imgur.com/rVCYW.jpg
This is the code that I tried (using Overleaf)
\begin{figure}[H]
\centering
\begin{subfigure}[b]{0.45\textwidth}
\centering
\includegraphics[width=1\textwidth]{Images/beginner.png}
\caption{Beginner}
\end{subfigure}
\hfill
\begin{subfigure}[b]{0.45\textwidth}
\centering
\includegraphics[width=1\textwidth]{Images/intermediate.png}
\caption{Intermediate}
\end{subfigure}
\newline
\centering
\begin{subfigure}[b]{0.45\textwidth}
\centering
\includegraphics[width=1\textwidth]{Images/advanced.png}
\caption{Advanced}
\end{subfigure}
\hfill
\begin{subfigure}[b]{0.45\textwidth}
\centering
\includegraphics[width=1\textwidth]{Images/expert.png}
\caption{Experts}
\end{subfigure}
\caption{lorem ipsum}
\end{figure}
If i break it up into two pieces and insert
\end{figure}
\begin{figure}
then the problem is fixed but the captions become (a), (b) (a), (b).
I want the first and second figures to appear on the above page because there is a huge blank.
So like this: https://i.stack.imgur.com/HPM2m.jpg

\ContinuedFloatfrom the caption package to make the caption numbers match up. And [ht] will almost always look better than [H]. – John Kormylo Oct 25 '21 at 13:33