Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!wuarchive!rex!ames!orion.arc.nasa.gov!ogawa From: ogawa@orion.arc.nasa.gov (Arthur Ogawa) Newsgroups: comp.text.tex Subject: Re: chapters on odd pages in book.sty Summary: Here's a .sty file that does it Keywords: sty page style chapter opener Message-ID: <1991Mar7.051601.22580@news.arc.nasa.gov> Date: 7 Mar 91 05:16:01 GMT References: <27536@dime.cs.umass.edu> Sender: Arthur Ogawa Organization: NASA Ames Research Center, Moffett Field, CA Lines: 39 Bcc: ogawa In article <27536@dime.cs.umass.edu> hgschulz@cs.umass.edu (Henning Schulzrinne) writes: |The book style introduces empty pages so that all chapters start on |odd-numbered pages. However, the running head is printed on these pages, |which looks a bit odd. From a few actual books, it seems that standard |operating procedure is to leave a completely blank sheet, with no page |number or running head, but naturally count it as a page. Has anybody |created a style to accomplish that? Thanks. The following .sty file provides for just the functionality that Mr Schulzrinne asks for. The following file tests the .sty file. %%%%%%%%%%%%%%%%% cut here--start of Schulzrinne.sty %%%%%%%%%%%%%%%% % Schulzrinne.sty--provide for blank pages between chapters % This redefinition of the \cleardoublepage command provides % for a special pagestyle for the "extra" pages which are generated % to ensure that the chapter opener is on a recto page. % The pagestyle is "chapterverso"; for many publishers, this should be % identical to "empty", so that's the default. \def\cleardoublepage{\clearpage \if@twoside \ifodd\c@page\else \null\thispagestyle{chapterverso}\newpage \if@twocolumn\null\newpage\fi \fi \fi }% \def\ps@chapterverso{\ps@empty}% %%%%%%%%%%%%%%%%% cut here--end of Schulzrinne.sty %%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%% cut here--start of Schulzrinne.tex %%%%%%%%%%%%%%%% % Schulzrinne.tex--test for blank pages between chapters \documentstyle{book}% \documentstyle{Schultzrinne}% \begin{document}% \null\newpage \chapter{test}% \end{document}% %%%%%%%%%%%%%%%%% cut here--end of Schulzrinne.tex %%%%%%%%%%%%%%%%