From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/27589 Path: news.gmane.org!not-for-mail From: Johannes Graumann Newsgroups: gmane.comp.tex.context Subject: Re: Part head centering and empty header Date: Mon, 01 May 2006 10:02:28 -0700 Organization: Die Guten Message-ID: References: <200604290908.32646.john@wexfordpress.com> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1146503033 30255 80.91.229.2 (1 May 2006 17:03:53 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 1 May 2006 17:03:53 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Mon May 01 19:03:49 2006 Return-path: Envelope-to: gctc-ntg-context-518@m.gmane.org 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 1Fabo7-0003Oa-7f for gctc-ntg-context-518@m.gmane.org; Mon, 01 May 2006 19:03:35 +0200 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 1F058127A6; Mon, 1 May 2006 19:03:34 +0200 (CEST) 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 31903-04; Mon, 1 May 2006 19:03:27 +0200 (CEST) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 49A7A1278E; Mon, 1 May 2006 19:03:27 +0200 (CEST) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 0838D1278E for ; Mon, 1 May 2006 19:03:25 +0200 (CEST) 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 01840-01 for ; Mon, 1 May 2006 19:03:22 +0200 (CEST) Original-Received: from fmmailgate01.web.de (fmmailgate01.web.de [217.72.192.221]) by ronja.ntg.nl (Postfix) with SMTP id 9176D1277F for ; Mon, 1 May 2006 19:03:22 +0200 (CEST) Original-Received: from smtp06.web.de (fmsmtp06.dlan.cinetic.de [172.20.5.172]) by fmmailgate01.web.de (Postfix) with ESMTP id 429B726E1056 for ; Mon, 1 May 2006 19:03:19 +0200 (CEST) Original-Received: from [131.215.35.27] (helo=iluvatar.caltech.edu) by smtp06.web.de with asmtp (TLSv1:EXP1024-RC4-SHA:128) (WEB.DE 4.107 #108) id 1Fabnq-0007Mx-00 for ntg-context@ntg.nl; Mon, 01 May 2006 19:03:19 +0200 Original-To: mailing list for ConTeXt users Original-Lines: 46 User-Agent: KNode/0.10.2 X-Sender: johannes_graumann@web.de X-Virus-Scanned: amavisd-new at ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.7 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:27589 Archived-At: John R. Culleton wrote: > I would take a different approach, with each part header (there > can't be that many) enclosed in > \startstandardmakeup > and > \stopstandardmakeup > > To get the part into the TOC there is a command to write an > entry manually, with \writetolist. Thanks a lot for this comment. It solved my problem. I'm now using: \defineXMLenvironment [appendices] {% \startappendices \setuppagenumbering [% way=bytext,% partnumber=no,% conversion=numbers,% location={header,right}% ]% \startstandardmakeup [% headerstate=empty,% pagestate=start% ] \framed [% width=\textwidth,% frame=off,% ] {% \ss\switchtobodyfont[60pt]\setupinterlinespace[line=2.8ex] Appendices \writetolist[part]{Appendices}{} } \stopstandardmakeup } {\stopappendices} And it does exactly what I want. Joh