diff options
Diffstat (limited to 'Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-floatpages.html')
-rw-r--r-- | Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-floatpages.html | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-floatpages.html b/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-floatpages.html deleted file mode 100644 index 7143ac976e2..00000000000 --- a/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-floatpages.html +++ /dev/null @@ -1,33 +0,0 @@ -<head> -<title>UK TeX FAQ -- question label floatpages</title> -</head><body> -<h3>Floats on their own on float pages</h3> -<p/>It’s sometimes necessary to force a float to live on a page by itself. -(It’s sometimes even necessary for <em>every</em> float to live on a -page by itself.) When the float fails to ‘set’, and waits for the end -of a chapter or of the document, the natural thing to do is to declare -the float as -<blockquote> - <code>\</code><code>begin{figure}[p!]</code> -</blockquote><p> -but the overriding <code>!</code> modifier has no effect on float page floats; so -you have to make the float satisfy the parameters. -<a href="FAQ-floats.html">Moving tables and figures</a> offers some -suggestions, but doesn’t solve the one-float-per-page question. -<p/>The ‘obvious’ solution, using the counter <code>totalnumber</code> -(“total number of floats per page”) doesn’t work: -<code>totalnumber</code> only applies to floats on ‘text’ pages (pages -containing text as well as one or more float). So, to allow any -size float to take a whole page, set <code>\</code><code>floatpagefraction</code> really -small, and to ensure that no more than one float occupies a page, make -the separation between floats really big: -<blockquote> -<pre> -\renewcommand\floatpagefraction{.001} -\makeatletter -\setlength\@fpsep{\textheight} -\makeatother -</pre> -</blockquote><p> -<p/><p>This question on the Web: <a href="http://www.tex.ac.uk/cgi-bin/texfaq2html?label=floatpages">http://www.tex.ac.uk/cgi-bin/texfaq2html?label=floatpages</a> -</body> |