Seite 1 von 1

Problem bei der Abbildung

Verfasst: Do 15. Apr 2010, 20:40
von ie
Hallo Leute,

hab da ein kleines problem. Undzwar wenn ich eine weitere Abbildung einfüge bekomme ich aufeinmal diese Fehler:

! LaTeX Error: Too many unprocessed floats.

See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.1198 \begin{figure}[h]
You've lost some text. Try typing <return> to proceed.
If that doesn't work, type X <return> to quit.

! Undefined control sequence.
\@xfloat ...@fltovf \fi \global \setbox \@currbox
\color@vbox \normalcolor \...
l.1198 \begin{figure}[h]

The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.

! Missing number, treated as zero.
<to be read again>
\vbox
l.1198 \begin{figure}[h]

A number should have been here; I inserted `0'.
(If you can't figure out why I needed to see a number,
look up `weird error' in the index to The TeXbook.)

<Laser/teil6.jpg, id=653, 963.6pt x 572.1375pt>
File: Laser/teil6.jpg Graphic file (type jpg)
<use Laser/teil6.jpg>
! Undefined control sequence.
\@largefloatcheck ->\ifdim \ht \@currbox
>\textheight \@tempdima -\textheigh...
l.1203 \end{figure}
\\
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.

! Missing number, treated as zero.
<to be read again>
>
l.1203 \end{figure}
\\
A number should have been here; I inserted `0'.
(If you can't figure out why I needed to see a number,
look up `weird error' in the index to The TeXbook.)

! Undefined control sequence.
<argument> \@currbox


So sieht mein Code aus:
\begin{figure}[h]
	\centering
		\includegraphics[width=0.3\textwidth]{Laser/teil6}
	\caption{Teil11 vom Spiegelgelenkarm}
	\label{fig:teil6}
\end{figure}\\
Kann da jemand mir weiter helfen.
PS: Benutze die Klasse scrbook
Danke im Voraus

Problem bekannt

Verfasst: Do 15. Apr 2010, 20:57
von localghost

Verfasst: Do 15. Apr 2010, 21:07
von KarlMarx
Moin ie!

Ohne ein lauffähiges Minimalbeispiel wird Dir kaum eine(r) helfen können. Außerdem wäre es auch hilfreich zu wissen, wie DU kompilierst, ob und wenn ja was ausgegeben wird usw.
Bei mir wird Dein Code einwandfrei kompiliert.
\documentclass[
   12pt,
   german
]{scrbook}

\usepackage{babel}
\usepackage[latin1]{inputenc}
\usepackage[pdftex]{graphicx}


\begin{document}

\begin{figure}[h]
   \centering
      \includegraphics[width=0.3\textwidth]{Laser/teil6}
   \caption{Teil11 vom Spiegelgelenkarm}
   \label{fig:teil6}
\end{figure}

\end{document}
Gruß, Marx.