(Put \usepackage{floatflt} in the LaTeX Preamble if there are no other floats in the document)
I tried several places (around the figure, around figure + legends, before and after the float) but none seems to work.
Please give me a hint
this I posted to comp.text.tex
Herbert
---------
Paul Smith schrieb: > Dear All
> I have tried to use the package floatflt, but no picture appears on > DVI file. My very short TeX document is below. Could anybody here > please help me? Thank you a lot in advance!
put it in the right place. I suppose that you use LyX (the code looks LyX like). In this case do not use the center environment from the menu, write instead \centering as TeX command.
Herbert
\documentclass[12pt]{article} \usepackage{floatflt} \usepackage{graphicx}
\def\x{This is a line of text. }
\begin{document}
\x\x\x\x
\begin{floatingfigure}{0.50\columnwidth}%
\centering
\includegraphics[%
scale=0.5,bb = 0 0 200 100, draft, type=eps]{image.eps}
\caption{This is the picture.}
\end{floatingfigure}
\x\x\x\x\x\x\x\x\x\x\x\x
\x\x\x\x\x\x\x\x\x\x\x\x
\end{document}