I have the problem that by inserting 4 large images they do not fit in a single sheet (see attached image and code used). I would like that, if all the images don't fit on one sheet, they go to the next sheet.
How can I do? Thank you
\begin{figure}
\centering
\subfigure[Intero dominio] {
\includegraphics[width=0.6\textwidth]{\jpgfigspath 2DMeshLontano}
\label{fig:2DMeshLontano}
}
\hspace{0.5cm}
\subfigure[Rotore] {
\includegraphics[width=0.6\textwidth]{\jpgfigspath 2DMeshNormale}
\label{fig:2DMeshNormale}
}
\hspace{0.5cm}
\subfigure[Intorno della pala] {
\includegraphics[width=0.6\textwidth]{\jpgfigspath 2DMeshRavvicinato}
\label{fig:2DMeshRavvicinato}
}
\hspace{0.5cm}
\subfigure[Profilo della pala] {
\includegraphics[width=0.6\textwidth]{\jpgfigspath 2DMeshVicino}
\label{fig:2DMeshVicino}
}
\caption{Griglia di calcolo 2D (vista dall'alto)}
\end{figure}

\ContinuedFloat(many examples on this site) – David Carlisle Aug 27 '20 at 11:04\ContinuedFloat(also caption package) and figure[bp] (first) and [pt] (rest), you can even add one subfigure per float. – John Kormylo Aug 27 '20 at 13:58.45/textwidth, remove\centeringand change the\hspaces by\hfillto have a 2x2 subfigures instead of 3+1. – Fran Aug 27 '20 at 15:17