On Tue, 13 Nov 2001, Giovanni De Matteis wrote:
> How can i place two figures side to side and not one under the other in
> the same float?
place it in a table of 1 row and two column inside the figure float.
But it's better to use minipage command, try the following...
[inside the float, all in red command (tex style)]
\begin{tabular}{cc}
\begin{minipage}{9.5cm}
.... insert the first figure ....
\end{minipage}
&
\begin{minipage}{5cm}
.... insert the second figure ....
\end{minipage}
\end{tabular}
Figure: title bla.. bla...
I hope you do not find error.
Wayan