I would like to split 10 subfigures over two pages (6 at the bottom of one page, 4 at the top of the next page). I am using \ContinuedFloat for that. To set the position of the two blocks, I wrote [!b] and [ht] for each one, respectively.
However, I get a full page of text between the two blocks of figures. If I write [H] instead of [ht], I get the second block (figures 7-10) above the first one (figures 1-6).
Does anybody have an idea how to solve it? Thank you in advance.
\documentclass{article}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\begin{document}
\begin{figure}[!b]
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[trim=0 0 430 0,clip, width=1.0\linewidth]{xxx.eps}
\caption{fig1}
\end{subfigure}
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[trim=0 0 430 0,clip, width=1.0\linewidth]{xxx.eps}
\caption{fig2}
\end{subfigure}
\newline
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[trim=0 0 430 0,clip, width=1.0\linewidth]{xxx.eps}
\caption{fig3}
\end{subfigure}
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[trim=0 0 430 0,clip, width=1.0\linewidth]{xxx.eps}
\caption{fig4}
\end{subfigure}
\newline
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[trim=0 0 430 0,clip, width=1.0\linewidth]{xxx.eps}
\caption{fig5}
\end{subfigure}
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[trim=0 0 430 0,clip, width=1.0\linewidth]{xxx.eps}
\caption{fig6}
\end{subfigure}
\end{figure}
\begin{figure}[ht]\ContinuedFloat
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[trim=0 0 430 0,clip, width=1.0\linewidth]{xxx.eps}
\caption{fig7}
\end{subfigure}
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[trim=0 0 430 0,clip, width=1.0\linewidth]{xxx.eps}
\caption{fig8}
\end{subfigure}
\newline
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[trim=0 0 430 0,clip, width=1.0\linewidth]{xxx.eps}
\caption{fig9}
\end{subfigure}
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[trim=0 0 430 0,clip, width=1.0\linewidth]{xxx.eps}
\caption{fig10}
\end{subfigure}
\caption{Description }
\label{fig:labelfig}
\end{figure}
\end{document}```
