I would like to have some paragraphs including a sequence of figures (no text at all). However I am not succeeding in placing the figures right below the paragraph title. What happens is that the paragraph title is shifted below the figures instead of remaining on top of those.
I know from this answer that I should not use a floating environment (such as the figure one) if I do not want my object to float in the document. However I need to organize my images in the same way I would do with the figure and subfigure environments. I have also tried using the H option, but it does not work. How can I achieve that?
Below a MWE for my case.
\documentclass[a4paper,12pt]{article}
\usepackage{float} % Images formatting
\usepackage{graphicx} % Insert figures
\usepackage{subcaption}
\begin{document}
\paragraph{\boldmath$N=16$}
\begin{figure}[H]
\begin{subfigure}[b]{0.5\textwidth}
\centering
\includegraphics[height=0.55\textwidth]{example-image-a}
\end{subfigure}%
\begin{subfigure}[b]{0.5\textwidth}
\centering
\includegraphics[height=0.65\textwidth]{example-image-b}
\end{subfigure}
\caption{Illustration 1 of $N=16$}
\label{fig:ill1n16}
\end{figure}
\end{document}


newpage\paragraph{$\bm{N=16}$} \leavevmode \begin{figure}[H] .....– Bernard Feb 10 '19 at 18:50figureenvironments over 2 pages if a singe\paragraphstatement and a singlefigureenvironment will do too, right? – Mico Feb 10 '19 at 19:02\leavevmodesuggestion as an answer -- and maybe provide an insight as to how and why\leavevmode"works" here? – Mico Feb 10 '19 at 19:04figureenvironment does the job for the problem I was facing. – fma Feb 10 '19 at 21:03