From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/23785 Path: news.gmane.org!not-for-mail From: Tobias Burnus Newsgroups: gmane.comp.tex.context Subject: Re: Empty page at the end of the document Date: Fri, 25 Nov 2005 19:49:48 +0100 Message-ID: <43875CCC.3000406@gmx.de> References: <808445935.20051125161411@iol.it> <43872C65.8090206@gmx.de> <438749B8.1060606@wxs.nl> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1132944622 18920 80.91.229.2 (25 Nov 2005 18:50:22 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 25 Nov 2005 18:50:22 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Fri Nov 25 19:50:20 2005 Return-path: Original-Received: from ronja.vet.uu.nl ([131.211.172.88] helo=ronja.ntg.nl) by ciao.gmane.org with esmtp (Exim 4.43) id 1Eficn-00034f-Pn for gctc-ntg-context-518@m.gmane.org; Fri, 25 Nov 2005 19:48:45 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 8342012892; Fri, 25 Nov 2005 19:48:45 +0100 (CET) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 08928-01-4; Fri, 25 Nov 2005 19:48:41 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id D258112886; Fri, 25 Nov 2005 19:48:41 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id D185E12886 for ; Fri, 25 Nov 2005 19:48:40 +0100 (CET) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 08928-01-3 for ; Fri, 25 Nov 2005 19:48:40 +0100 (CET) Original-Received: from zs04.physik.fu-berlin.de (zs04.physik.fu-berlin.de [160.45.35.155]) by ronja.ntg.nl (Postfix) with ESMTP id E26A61287F for ; Fri, 25 Nov 2005 19:48:39 +0100 (CET) Original-Received: from burns.physik.fu-berlin.de ([160.45.33.1] helo=[127.0.0.1]) by zs04.physik.fu-berlin.de with esmtp (Exim 4.54) id 1Efich-0002PT-9M; Fri, 25 Nov 2005 19:48:39 +0100 User-Agent: Mozilla Thunderbird 1.0.6 (X11/20050715) X-Accept-Language: en-us, en Original-To: mailing list for ConTeXt users In-Reply-To: <438749B8.1060606@wxs.nl> X-Scanned: No viruses found. X-Scan-Signature: 52d45032956968fb258f53842964e2cb X-Virus-Scanned: amavisd-new at ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.5 Precedence: list List-Id: mailing list for ConTeXt users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: ntg-context-bounces@ntg.nl Errors-To: ntg-context-bounces@ntg.nl X-Virus-Scanned: amavisd-new at ntg.nl Xref: news.gmane.org gmane.comp.tex.context:23785 Archived-At: Hi, Hans Hagen wrote: > beware, if you you nil the page commands, you may need to make sure > yourself that the pagebreaks between section blocks are forced at the > right moment in order to reset for instance marks (used in running > headers); > > end of frontpart (page break) > some changes to header settings > begin of bodypart (redundant page break) > start of chapter (forcing (redundant) page break) > > in the first case, the header may be wrong on the last page of the > frontpart because it is set before the page break forced by the chapter Well, somehow reading this above, it sounds different than I get by the current settings: \starttext setupheadertexts[FontMatter] \startfrontmatter \chapter{One}\chapter{Two} \stopfrontmatter \setupheadertexts[BodyMatter] \startbodymatter \chapter{Three} \stopbodymatter \stoptext Gives [One] [Two] [Three] [empty page]. Reading above I'd expect: [One] [Two][Three] or [One][Two][empty page][Three]. I actually want to have [One][Two][Three]. If I now set page=, then I get [One][Two][Three], but on page [Two] is the wrong header. What is the proper way of doing so? Or: Why is there a page(break) added _after_ the matter and not - like \chapter{} - a pagebreak before? Tobias PS: Fortunally, I needed only \setupheadertexts[chapter] so far, which poses no problem.