In a chapter with many figures, I'm having trouble to get the floats to be interlaced with the text. To quote http://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions:
Authors sometimes have many floats occurring in rapid succession, which raises the problem of how they are supposed to fit on the page and still leave room for text. In this case, LaTeX stacks them all up and prints them together if possible, or leaves them to the end of the chapter in protest. The skill is to space them out within your text so that they intrude neither on the thread of your argument or discussion, nor on the visual balance of the typeset pages.
I somehow feel this can't be the point, to have to manually spread the figures within the source file so that LaTeX will feel compelled to produce a visually pleasing result (if I felt that's how a typesetting software should work I'd be using Word). Why can't I just take a bunch of floats and tell LaTeX: "You take these and put them somewhere in this chapter. I know you can do it!"
I produced a MWE that shows that neither putting text before nor after a bunch of figures will help.
\documentclass{article}
\usepackage{mwe}
\begin{document}
\blindtext\par\blindtext\par\blindtext\par\blindtext\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par
\begin{figure}
\centering
\includegraphics[width=\linewidth]{example-image-a}
\caption{A figure.}
\end{figure}
\begin{figure}
\centering
\includegraphics[width=\linewidth]{example-image-a}
\caption{A figure.}
\end{figure}
\begin{figure}
\centering
\includegraphics[width=\linewidth]{example-image-a}
\caption{A figure.}
\end{figure}
\begin{figure}
\centering
\includegraphics[width=\linewidth]{example-image-a}
\caption{A figure.}
\end{figure}
\begin{figure}
\centering
\includegraphics[width=\linewidth]{example-image-a}
\caption{A figure.}
\end{figure}
\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par\blindtext\par
\end{document}

I know I could just use \begin{figure}[t] and would get what I want but, again, it can hardly be the point of floats to force them into a certain position. I am willing to let LaTeX put floats on a float page or at the bottom or whereever, as long as it at least tries to achieve a decent result. Mixing text and figure on one page and not on the others doesn't make any sense in any typography universe that I can conceive.

width=\linewidthout, LaTeX creates float pages with two floats in it. (Apparently two floats are too high for one page.) You can also set\renewcommand*{\floatpagefraction}{0.6}and pages with floats need at least to cover 60% of the page; they will all places like the first one. See How to influence the position of float environments like figure and table in LaTeX? – Qrrbrbirlbel Feb 25 '13 at 14:54\renewcommand*\floatpagefraction{0.7}and\renewcommand*\topfraction{0.7}– yo' Feb 25 '13 at 14:59\floatpagefractionjust another way to specifically forbid some behavior that might not be all wrong just to get this (minimal) example right? Just like[t]? Why do I even have to convince LaTeX that it shan't put floats on a page of its own when in at least one case it thought so itself and mixed the float with text? This can't be about tuning parameters I gather from that behaviour. – Christian Feb 25 '13 at 15:04tfloat. It then has not got enough text to make a text page (as the rest of the text has not been seen) but it does have some pending floats which are bigger than half a page so allowed to make a float page so it does that. It chooses the best option available at that point it doesn't hold things back in case some more text comes along later. – David Carlisle Feb 25 '13 at 16:04