Possible Duplicate:
How to influence the position of float environments like figure and table in LaTeX?
Hello I am trying to write between two figures, but when I am entering a text between them in the code,everything goes on the top of the two figures,why?
\begin{figure}[h!]
\begin{center}
\setlength\fboxsep{5.5pt}
\setlength\fboxrule{0.5pt}
\includegraphics[width=80mm,height=70mm]{ZeroReserveGraph_France-Sweden_0,75.jpg}
\end{center}
\caption{Graph for France and Sweden with ratio (0.75).}
\label{zerocapitalFranceSweeden_0,75}
\end{figure}
\begin{figure}[h!]
\begin{center}
\setlength\fboxsep{5.5pt}
\setlength\fboxrule{0.5pt}
\includegraphics[width=80mm,height=70mm]{ZeroReserveGraph_France-Sweden_0,75.jpg}
\end{center}
\caption{Graph for France and Sweden with ratio (0.75).}
\label{zerocapitalFranceSweeden_0,75}
\end{figure}
Thanks..
figureenvironment is an example of afloat. Have a look at the answer to how-to-influence-the-position-of-float-environments-like-figure-and-table-in-lat/39020#39020. On another note, have a look at should-i-use-center-or-centering-for-figures-and-tables :) – cmhughes Aug 23 '12 at 15:10