I want to have more space between the lines in my document which uses documentclass article. But if I use something like this blog says, it causes following error:
! LaTeX Error: Too many unprocessed floats.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.539 \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.
\latex@xfloat ...vf \fi \global \setbox @currbox
\color@vbox \normalcolor ...
l.539 \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'), typeI' 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.539 \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 upweird error' in the index to The TeXbook.)
...
How to fix it?
EDIT: using XeLaTeX
\documentclass{...}and ending with\end{document}. – Henri Menke Aug 08 '13 at 12:05\usepackage{setspace} \setstretch{1.5}in the header. The MWE works fine without AND with the lines in the header. I think theres an individual problem by the figures. But why is there something changing by line stretching? – lis Aug 08 '13 at 12:25! LaTeX Error: Too many unprocessed floats.might very well be accurate; to quote from The LaTeX Companion: 'LaTeX can defer up to 18 floats, then you will receive this error message. Using the packagemorefloatswill increase this limit to 36 but if there is a float that cannot be placed for some reason this change will merely delay receiving the above error.' Potential solution: follow @henrique's link. – jon Aug 09 '13 at 03:13