My images show up at the end of the chapter (only happens in one chapter), even though I use strict float parameters [!htpb] or only [h!]. I would like them to show up in the text on the (almost) precise position where I've placed them. (and yes, I have used \usepackage{graphicx} and \usepackage{float}).
Example of image input:
\begin{figure}[!htb]
\centering
\includegraphics[width=0.5\textwidth]{figures/Part II/II-1_vitruvius.jpg}
\caption{Vitruvius' principles}
\label{fig:II.1_Vitruvius}
\end{figure}
Weird thing is that no errors show up. Does anybody know how to fix it?
Thanks in advance.
[!htb]as used in the title mostly has the effect of preventing the float being on a float page (as it has no p) so going to the end is quite likely/[h!]even more so (latex usually warns that it is changing this toht) – David Carlisle Jun 21 '21 at 15:07