diff options
Diffstat (limited to 'Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-reallyblank.html')
-rw-r--r-- | Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-reallyblank.html | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-reallyblank.html b/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-reallyblank.html deleted file mode 100644 index 55c6da0694b..00000000000 --- a/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-reallyblank.html +++ /dev/null @@ -1,67 +0,0 @@ -<head> -<title>UK TeX FAQ -- question label reallyblank</title> -</head><body> -<h3>Really blank pages between chapters</h3> -<p/>If you’re using the standard classes, you need to take special action; -the <i>memoir</i> class and the <i>Koma-Script</i> classes provide -their own support for this — see below. -<p/><i>Book</i> (by default) and <i>report</i> (with <code>openright</code> class -option) ensure that each chapter starts on a right-hand (recto) page; -they do this by inserting a <code>\</code><code>cleardoublepage</code> command between -chapters (rather than a mere <code>\</code><code>clearpage</code>). The empty page thus -created gets to have a normal running header, which some people don’t -like. -<p/>The (excellent) <i>fancyhdr</i> manual covers this issue, basically -advising the creation of a command <code>\</code><code>clearemptydoublepage</code>: -<blockquote> -<pre> -\let\origdoublepage\cleardoublepage -\newcommand{\clearemptydoublepage}{% - \clearpage - {\pagestyle{empty}\origdoublepage}% -} -</pre> -</blockquote><p> -The “obvious” thing is then to use this command to replace -<code>\</code><code>cleardoublepage</code> in a patched version of the <code>\</code><code>chapter</code> command. -(Make a package of your own containing a copy -of the command out of the class.) This isn’t particularly difficult, -but you can instead simply subvert <code>\</code><code>cleardoublepage</code> (which isn’t -often used elsewhere): -<blockquote> -<pre> -\let\cleardoublepage\clearemptydoublepage -</pre> -</blockquote><p> -Note: this command works because <code>\</code><code>clearemptydoublepage</code> uses a copy -of <code>\</code><code>cleardoublepage</code>: instructions on macro programming - -<a href="FAQ-patch.html">patching techniques</a> explain the problem and -why this is a solution. -<p/>The <i>emptypage</i> package does this sort of thing for you; all -you need do is load the package, and it does the rest. -<p/>The <em>KOMA-Script</em> replacements for the -<i>book</i> and <i>report</i> classes (<i>scrbook</i> and -<i>scrreprt</i> offers class options <code>cleardoubleempty</code>, -<code>cleardoubleplain</code> and <code>cleardoublestandard</code> -(using the running page style, as normal) that control the appearance -of these empty pages. The classes also offer do-it-yourself commands -<code>\</code><code>cleardoubleempty</code> (etc.). -<p/>The <i>memoir</i> class (and the <i>nextpage</i> package) -provide commands <code>\</code><code>cleartooddpage</code> and <code>\</code><code>cleartoevenpage</code>, -which both take an optional argument (the first, with no argument, -being an equivalent of <code>\</code><code>cleardoublepage</code>). One can achieve -‘special’ effects by putting commands in the optional argument: the -<code>\</code><code>clearemptydoublepage</code> we’re after would be achieved by -<code>\</code><code>cleartooddpage[</code><code>\</code><code>thispagestyle{empty}</code><code>]</code>. The -commands will also serve if you want the surreal effect of “This page -intentionally left blank” in the centre of an otherwise empty page. -<dl> -<dt><tt><i>emptypage.sty</i></tt><dd><a href="http://mirror.ctan.org/macros/latex/contrib/emptypage.zip">macros/latex/contrib/emptypage</a> (or <a href="http://mirror.ctan.org/macros/latex/contrib/emptypage/">browse the directory</a>); <a href="http://mirror.ctan.org/help/Catalogue/entries/emptypage.html">catalogue entry</a> -<dt><tt><i>fancyhdr.sty</i></tt><dd><a href="http://mirror.ctan.org/macros/latex/contrib/fancyhdr.zip">macros/latex/contrib/fancyhdr</a> (or <a href="http://mirror.ctan.org/macros/latex/contrib/fancyhdr/">browse the directory</a>); <a href="http://mirror.ctan.org/help/Catalogue/entries/fancyhdr.html">catalogue entry</a> -<dt><tt><i>memoir.cls</i></tt><dd><a href="http://mirror.ctan.org/macros/latex/contrib/memoir.zip">macros/latex/contrib/memoir</a> (or <a href="http://mirror.ctan.org/macros/latex/contrib/memoir/">browse the directory</a>); <a href="http://mirror.ctan.org/help/Catalogue/entries/memoir.html">catalogue entry</a> -<dt><tt><i>nextpage.sty</i></tt><dd><a href="http://mirror.ctan.org/macros/latex/contrib/misc/nextpage.sty">macros/latex/contrib/misc/nextpage.sty</a>; <a href="http://mirror.ctan.org//help/Catalogue/entries/nextpage.html">catalogue entry</a> -<dt><tt><i>scrbook.cls, scrrept.cls</i></tt><dd>Part of <a href="http://mirror.ctan.org/macros/latex/contrib/koma-script.zip">macros/latex/contrib/koma-script</a> (or <a href="http://mirror.ctan.org/macros/latex/contrib/koma-script/">browse the directory</a>) -</dl> -<p/><p>This question on the Web: <a href="http://www.tex.ac.uk/cgi-bin/texfaq2html?label=reallyblank">http://www.tex.ac.uk/cgi-bin/texfaq2html?label=reallyblank</a> -</body> |