A part of my document looks like this:
\paragraph{blah}
\begin{figure}[ht!]
\centering
\includegraphics[width=4.5in]{3a.jpg}
\caption{(a)}
\end{figure}
\begin{figure}[ht!]
\centering
\includegraphics[width=4.5in]{3b.jpg}
\caption{(b)}
\end{figure}
\begin{figure}[ht!]
\centering
\includegraphics[width=4.5in]{3c.jpg}
\caption{(c)}
\end{figure}
and image 3a shows before the 'blah' paragraph heading. Why is it doing that and how do I fix it?
\documentclass{...}and ending with\end{document}. – Paul Gessler Jan 31 '14 at 02:32[ht!]for the position of each figure, you are insisting that LaTeX place your figure eitherhere (current position) or at thetop of the page. It decides that the top of the page is the best option, and places the figure there. Please see here for details on float position specification. – Paul Gessler Jan 31 '14 at 02:37