
I've got two figure environments, and within them a table of figures. between the two figure environments I have text, but the text shows up with the text BEFORE the 1st figure. Why? How can I fix this, here is a snippet of code:
SOME TEXT HERE1
\begin{figure}[htb]
\centering
\begin{tabular}{ll}
\includegraphics[height=9cm]{1graph.pdf} & \includegraphics[height=9cm]{1Zoom.pdf} \\
\includegraphics[height=9cm]{1answer.pdf}
\end{tabular}
\end{figure}
SOME TEXT HERE2
\begin{figure}[htb]
\centering
\begin{tabular}{ll}
\includegraphics[height=9cm]{2graph.pdf} & \includegraphics[height=9cm]{2Zoom.pdf} \\
\includegraphics[height=9cm]{2answer.pdf}
\end{tabular}
\end{figure}
So my problem is that SOME TEXT HERE2 gets put right after SOME TEXT HERE, before the figures. How can I resolve this? Actually is using tabular to get figures to display side by side the proper way to go about this?
Many thanks!