Here a few lines how I included the figures:
\usepackage{graphicx}
\graphicspath{{./Grafiken/}} \DeclareGraphicsExtensions{.eps}
...
\begin{figure}[H]
\centering{\includegraphics*[scale=0.7]{Systemkegel}}
\captionof{figure}{Systemkegel} %caption in the table of figures
works perfectly !
\end{figure}
...
Hope there is someone out there who can help me ! Thank you !
The "H" option only works if you are using the float package.
Otherwise you have to use h, t, b. Use the float package. If you
already have this package on the preamble I suggest -- but I am not
sure if it works -- to remove the * in
\includegraphics*
Also, for pdflatex the extension eps is not correct. Try to convert
your graphics to png or jpg.
Bye
--
William Oquendo
Linux User # 321481
*********************
Somewhere, something incredible is waiting to be known.
-- Carl Sagan
user, n:
The word computer professionals use when they mean "idiot."
-- Dave Barry, "Claw Your Way to the Top"
[I always thought "computer professional" was the phrase hackers used
when they meant "idiot." Ed.]
To teach is to learn twice.
-- Joseph Joubert
*********************
You can force latex to place figures immediately using \clearpage.
Whethere this is a good idea or not, I don't know.
--
-Todd
http://www.signalsguru.net/
These figure logjams are usually due to over-restrictive float
placement. For example, using \begin{figure}[t] for a figure
that larger than the largest allowable top-figure.
You should use [htbp] or [tbp] whenever possible and make
sure your float-placement parameters are reasonable.
This is described in
ftp://ctan.tug.org/tex-archive/info/epslatex/english/epslatex.pdf
Tony