From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/11687 Path: main.gmane.org!not-for-mail From: Guy Worthington Newsgroups: gmane.comp.tex.context Subject: header/footer suppression Date: 28 Mar 2003 19:58:05 +0800 Sender: ntg-context-admin@ntg.nl Message-ID: Reply-To: ntg-context@ntg.nl NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1048852447 27916 80.91.224.249 (28 Mar 2003 11:54:07 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 28 Mar 2003 11:54:07 +0000 (UTC) Original-X-From: ntg-context-admin@ntg.nl Fri Mar 28 12:54:05 2003 Return-path: Original-Received: from ref.vet.uu.nl ([131.211.172.13] helo=ref.ntg.nl) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18ysQv-0007G6-00 for ; Fri, 28 Mar 2003 12:54:05 +0100 Original-Received: from ref.ntg.nl (localhost.localdomain [127.0.0.1]) by ref.ntg.nl (Postfix) with ESMTP id A94F110AFF; Fri, 28 Mar 2003 12:54:06 +0100 (MET) Original-Received: from main.gmane.org (main.gmane.org [80.91.224.249]) by ref.ntg.nl (Postfix) with ESMTP id 5DCDD10AE7 for ; Fri, 28 Mar 2003 12:51:38 +0100 (MET) Original-Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 18ysNt-000764-00 for ; Fri, 28 Mar 2003 12:50:57 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-To: ntg-context@ref.ntg.nl Original-Received: from news by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 18ysNm-00075l-00 for ; Fri, 28 Mar 2003 12:50:50 +0100 Original-Lines: 24 Original-X-Complaints-To: usenet@main.gmane.org User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Errors-To: ntg-context-admin@ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.0.13 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: mailing list for ConTeXt users List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.comp.tex.context:11687 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:11687 I can't get both a blank page inserted whenever a chapter finishes on an odd page and also suppress my header on the first page of a chapter. Here's my minimal example: ----- % output=pdftex \starttext \setuphead [chapter] [before={\page\ifodd\realpageno\else\page[empty]\fi\page[right]}, header=empty] \setupheadertexts [chapter] \setuppagenumbering[alternative=doublesided, option=doublesided] \chapter {test} \dorecurse{10}{\input tufte } \chapter {test} \dorecurse{10}{\input tufte } \chapter {test} \dorecurse{10}{\input tufte } \stoptext -----