I am writng in Latex. I am new with it and need some help.
I need to add figures. I can do it with the following code
\begin{figure}[h]
\includegraphics[width = 15cm]{figures/mlpStrSingle}
\caption{MLP neural network for one single output node}
\label{fig:mlp}
\end{figure}
if I use this the figure goes to next page . I need it right after the text. then the next text should start. How can I do that?
Thanks in advance.