Possible Duplicate:
How do I ensure that figures appear in the section they’re associated with?
Basically I have something like this:
\section{first section}
[sometext]
\begin{figure}
\centering
\includegraphics[scale=0.35]{i/kbexample.png}
\caption{---}
\label{kbexample}
\end{figure}
\section{second section}
[sometext]
\begin{itemize}
\item An item
\end{itemize}
That image is appearing in the middle of my lists (\begin{itemize}). It even belongs to previous section but LaTeX prints it after the second section.
I know I can use \clearpage or \newpage but isn't that kind of silly?