From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/14639 Path: main.gmane.org!not-for-mail From: Hans Hagen Newsgroups: gmane.comp.tex.context Subject: Re: basic formatting in ConTeXt Date: Tue, 27 Jan 2004 21:53:53 +0100 Sender: ntg-context-admin@ntg.nl Message-ID: <6.0.1.1.2.20040127215320.02b37ec0@localhost> References: Reply-To: ntg-context@ntg.nl NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Trace: sea.gmane.org 1075237020 18549 80.91.224.253 (27 Jan 2004 20:57:00 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 27 Jan 2004 20:57:00 +0000 (UTC) Cc: "Alan C.Bowen" Original-X-From: ntg-context-admin@ntg.nl Tue Jan 27 21:56:49 2004 Return-path: Original-Received: from ref.vet.uu.nl ([131.211.172.13] helo=ref.ntg.nl) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AlaGO-0006tC-00 for ; Tue, 27 Jan 2004 21:56:48 +0100 Original-Received: from ref.ntg.nl (localhost.localdomain [127.0.0.1]) by ref.ntg.nl (Postfix) with ESMTP id 93E6010B79; Tue, 27 Jan 2004 21:55:36 +0100 (MET) Original-Received: from mail.solcon.net (mail.solcon.net [212.45.33.5]) by ref.ntg.nl (Postfix) with ESMTP id 7F89510B52 for ; Tue, 27 Jan 2004 21:54:28 +0100 (MET) Original-Received: from server-1.pragma-net.nl (dsl-212-84-128-085.solcon.nl [212.84.128.85]) by mail.solcon.net (8.11.6/8.9.3) with ESMTP id i0RKt4p11172; Tue, 27 Jan 2004 21:55:07 +0100 Original-Received: by server-1.pragma-net.nl (Postfix, from userid 65534) id D1F262EF77; Tue, 27 Jan 2004 21:55:12 +0100 (CET) Original-Received: from laptop-3.wxs.nl (unknown [10.100.1.1]) by server-1.pragma-net.nl (Postfix) with ESMTP id A57BA2EF75; Tue, 27 Jan 2004 20:55:11 +0000 (UTC) X-Sender: hagen-mail@localhost X-Mailer: QUALCOMM Windows Eudora Version 6.0.1.1 Original-To: ntg-context@ntg.nl In-Reply-To: Original-References: 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:14639 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:14639 At 12:42 27/01/2004, Alan C.Bowen wrote: >I am new to ConTeXt and have what are doubtless some very basic questions. >I have checked the manuals and the archives of this list and of the TeX on >Mac OS X list the, but have not found what I am looking for yet. What I need is >(a) to set up the footers and headers in a book so that there is only >a footer on the first page and only a header on subsequent pages, >(b) to define the first page number >(c) to set the color of a page in its entirety. > >Any pointers to documents, solutions, or worked examples in ConTeXt will >be very much appreciated. I have some idea of how to do these things in >Plain TeX, but should really like to migrate to ConTeXt. \setupoutput[pdftex] \setupcolors[state=start,textcolor=red] \definetext[chapterstart][footer][\pagenumber] \setupheadertexts[\pagenumber] \setuphead[chapter][header=high,footer=chapterstart] \starttext \chapter{Zapf} \dorecurse{20}{\input zapf\relax} \stoptext Along these lines ... Hans