Guenter Milde
Tue, 09 Feb 2010 06:16:37 -0800
On 2010-02-08, Lara Pagano wrote: > Another problem I am having is with too many floating figures. I have a > large document with anywhere from 3-100 figures within each chapter. I keep > getting the error regarding too many floats. I worked around this issue by > placing /clearpage every so often to make it produce a PDF. However, the > blank pages it is producing is something I need to get rid of. How do I > combat this issue given the amount of figures I have??
Changing the LaTeX parameters for float placement in the LyX preamble, e.g.
\renewcommand{\textfraction}{0.5}
\renewcommand{\topfraction}{0.5}
\renewcommand{\bottomfraction}{0.5}
\setcounter{totalnumber}{50}
\setcounter{topnumber}{50}
\setcounter{bottomnumber}{50}"""
Günter