I have a figure (let's call it figure 11 ) which has 3 subfigures inside. Figures 11A and B display perfectly in one page of the compiled pdf. The issue at hand is... figure 11C is stuck in the center (horizontally and vertically, I mean right in the middle) of the next page … What I really would need is only figure 11c on the top of the page, and below fig 11C the next subsection and the rest of the thesis.
Can't find what code will archieve this, I have tried using t and !ht but no changes. Nothing seems to work, here I pasted the code.
\documentclass{report}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\begin{document}
\begin{figure}[ht!]
\centering
\caption{BLA}
\label{fig:11}
\begin{subfigure}{0.8\textwidth}
\centering
\includegraphics[width=\textwidth]{anygraph.pdf}
\caption{haha}
\label{fig:11A}
\end{subfigure}
\hfill
\begin{subfigure}{0.8\textwidth}
\centering
\includegraphics[width=\textwidth]{secondgraph.pdf}
\caption{haha2}
\label{fig:11B}
\end{subfigure}
\hfill
\end{figure}
\begin{figure}[!ht] \ContinuedFloat
\begin{subfigure}{0.8\textwidth}
\centering
\includegraphics[width=0.8\textwidth]{anygraph3.pdf}
\caption{haha3}
\label{fig:11C}
\end{subfigure}
\hfill
\end{figure}
\subsubsection{New}
babababababa
\end{document}
\begin{figure}[ht!] \ContinuedFloatwith\clearpage \begin{figure}[!t] \ContinuedFloat \caption{BLA, cont'd} \centering? – Mico May 27 '22 at 18:24\hfilldirective with\par\bigskipand get rid of the second\hfilldirective entirely. – Mico May 27 '22 at 18:30\includegraphics[width=0.8\textwidth]{anygraph3.pdf}in the thirdsubfigureis a mistake. Should it be\includegraphics[width=\textwidth]{anygraph3.pdf}? – Mico May 27 '22 at 18:33\hfill: The first instance does nothing useful at all, since there's not enough space to place two subfigures side by side.\parforces a line break, and\bigskipadds a bit of vertical separation between the first subcaption and the next graph. – Mico May 27 '22 at 18:34