Hi Gerhard, Am 06.09.2007 um 16:01 schrieb Gerhard Kugler:
On Thu, Sep 06, 2007 at 09:51:30AM +0200, Steffen Wolfrum wrote:
Am 06.09.2007 um 09:35 schrieb Gerhard Kugler:
Hi,
in case of double-sided pagination there are empty pages.
Where do they come from (how are they generated?)
My publisher does'nt want numbers at that pages. How can I set this?
Maybe you just set "manually" an empty page: \page[yes,empty]
Hi Steffen,
that seems to me a misunderstanding. Empty pages are created automatically because first pages of chapters begin at a right side. That's ok. But if the last page before a chapter is empty, it should not contain a header with the page number.
I use the following setup (apologies for not translating the german comments): % Leere Linke Seiten sind leer: %\definepagebreak[chapter][yes,header,right]% klappt gut! NICHT: [empty,header,right \definepagebreak[chapter][yes,header]% klappt gut! NICHT: [empty,header,right] %\definepagebreak[section][yes,header] % zusätzlich innerhalb des bodymatter leere linke Seiten mit \page [yes,empty] manuell setzen \setupsectionblock[frontpart][page=no] \setupsectionblock[bodypart][page=no] \setupsectionblock[backpart][page=no]
An addition: The publisher wants that the header of pages contains at the left the title of the chapter and at the right the title of the subchapter. How to realize it? And here also: Empty pages should not contain such a header.
% SeitenZahl \definefont [SZfont][Serif at 9pt] \def\SZstyle{\SZfont \setupinterlinespace[line=11pt]} % Kopfzeile und Lebende Titel: \definefont [KopfzeileFont][Serif at 9pt] \def\KopfzeileStyle {\KopfzeileFont\setupinterlinespace[line=11pt]} % Layout + Position der Seitenzahl: \setuppagenumbering [command=\SZstyle,alternative=doublesided,location=] \setupheader[align=middle,style=\KopfzeileStyle] % Lebende Titel MITTIG: \setupheadertexts[\setups{text a}] [pagenumber] [pagenumber] [\setups {text b}] \startsetups[text a] \vtop{% \startalignment[center] \getmarking[chapter] \stopalignment } \stopsetups \startsetups[text b] \vtop{% \startalignment[center] \getmarking[section] \stopalignment } \stopsetups Steffen