From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/27217 Path: news.gmane.org!not-for-mail From: Miguel Queiros Newsgroups: gmane.comp.tex.context Subject: Re: Two Problems: Colored Chapter and Footnote positioning Date: Tue, 18 Apr 2006 01:51:33 +0100 Message-ID: <1145321494.9132.4.camel@localhost.localdomain> References: <1145313540.9138.16.camel@localhost.localdomain> <6faad9f00604171630r1f758ec3o513ccf8b119b1bc9@mail.gmail.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 1145321512 9677 80.91.229.2 (18 Apr 2006 00:51:52 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 18 Apr 2006 00:51:52 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Tue Apr 18 02:51: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 1FVeRU-0006OX-SO for gctc-ntg-context-518@m.gmane.org; Tue, 18 Apr 2006 02:51:44 +0200 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 9AE6A12788; Tue, 18 Apr 2006 02:51:44 +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 00897-02-4; Tue, 18 Apr 2006 02:51:40 +0200 (CEST) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 82F441279A; Tue, 18 Apr 2006 02:51:40 +0200 (CEST) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 65F5B1279A for ; Tue, 18 Apr 2006 02:51:39 +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 00897-02-3 for ; Tue, 18 Apr 2006 02:51:38 +0200 (CEST) Original-Received: from mail.bragatel.pt (jupiter.bragatel.pt [217.70.64.252]) by ronja.ntg.nl (Postfix) with SMTP id 2F20F12788 for ; Tue, 18 Apr 2006 02:51:37 +0200 (CEST) Original-Received: (qmail 7923 invoked from network); 18 Apr 2006 00:51:37 -0000 Original-Received: from mail.bragatel.pt (217.70.64.253) by mail.bragatel.pt with SMTP; 18 Apr 2006 00:51:37 -0000 Original-Received: from c-217-70-68-153.bragatel.pt ([217.70.68.153]) by localhost (mail.bragatel.pt [217.70.64.253]) (qmail-j, port 25) with ESMTP id 07912-01 for ; Tue, 18 Apr 2006 01:51:35 +0100 (WEST) Original-To: mailing list for ConTeXt users In-Reply-To: <6faad9f00604171630r1f758ec3o513ccf8b119b1bc9@mail.gmail.com> X-Mailer: Evolution 2.4.1 X-Virus-Scanned: by mailserver at bragatel.pt 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:27217 Archived-At: > \bgroup > \setuphead[chapter][color=darkblue] > \chapter{Capitulo 1} > \egroup > > or > > \start > \setuphead[chapter][color=darkblue] > \chapter{Capitulo 1} > \stop I'v tried both you solutions but I still get an header on each chapter page. I even tested it with \setuphead[chapter][header=empty] inside \bgroup ... \egroup or \start ... \stop with no luck. I tested it with the following file... ------------------------------------------------ \setupcolors[state=start] \setuphead[chapter][header=empty] \setupheadertexts[][chapter] \starttext \completecontent % \bgroup % \setuphead[chapter][color=darkblue] % \setuphead[chapter][header=empty] % \setuphead[chapter][color=darkblue] % \chapter{Aumento de produtividade com macros} %\egroup \start \setuphead[chapter][color=darkblue] % \setuphead[chapter][header=empty] \setupheadertexts[][chapter] \chapter{Capitulo 1} \stop \page teste \chapter{Capitulo 2} \page teste \stoptext