From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/21939 Path: news.gmane.org!not-for-mail From: Vit Zyka Newsgroups: gmane.comp.tex.context Subject: Re: itemize + color question Date: Mon, 15 Aug 2005 23:24:26 +0200 Message-ID: <4301080A.9020904@seznam.cz> References: Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1124141136 30899 80.91.229.2 (15 Aug 2005 21:25:36 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 15 Aug 2005 21:25:36 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Mon Aug 15 23:25:36 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 1E4mRd-0005Ze-Ex for gctc-ntg-context-518@m.gmane.org; Mon, 15 Aug 2005 23:24:33 +0200 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 28C74127CD; Mon, 15 Aug 2005 23:24:33 +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 29451-09-7; Mon, 15 Aug 2005 23:24:29 +0200 (CEST) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id B8A6C127C9; Mon, 15 Aug 2005 23:24:29 +0200 (CEST) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id D8222127C9 for ; Mon, 15 Aug 2005 23:24:27 +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 29451-09-6 for ; Mon, 15 Aug 2005 23:24:27 +0200 (CEST) Original-Received: from smtp.seznam.cz (smtp.seznam.cz [212.80.76.43]) by ronja.ntg.nl (Postfix) with SMTP id ED20F127C0 for ; Mon, 15 Aug 2005 23:24:26 +0200 (CEST) Original-Received: (qmail 17300 invoked from network); 15 Aug 2005 21:24:26 -0000 Original-Received: from unknown (HELO ?127.0.0.1?) (vit.zyka@62.240.166.134) by cetus.go.seznam.cz with ESMTPA; 15 Aug 2005 21:24:26 -0000 User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en Original-To: mailing list for ConTeXt users In-Reply-To: X-Antivirus: avast! (VPS 0531-4, 05.08.2005), Outbound message X-Antivirus-Status: Clean 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-Spam-Checker-Version: SpamAssassin 3.0.3 (2005-04-27) on smtp.ntg.nl X-Virus-Scanned: amavisd-new at ntg.nl Xref: news.gmane.org gmane.comp.tex.context:21939 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:21939 Thomas A. Schmitz wrote: > Dear gang, > > This seems like a very easy one, but I can't figure it out: on my > slides, I want numbered itemizations to appear item by item, and I want > the previous items to be "greyed out." I think this can only be done by > combining two itemize environments. This is what I tried: > > > \setupitemize[1][n,packed,joinedup] > > \startitemize[color=darkgray] > > \item \color[darkgray]{one} > > \stopitemize > > \startitemize[color=white][continue] > > \item two > > \stopitemize Like this? ---------------------------------------- \setupcolors[state=start] \starttext \setupitemize[1][n,packed,joinedup][color=darkgray] \startitemize \item one \setupitemize[color=red] \item two \stopitemize \stoptext ------------------------------------------ vit > > But the switches color=something and continue seem to exclude each > other: either I get a continued item numbered "2," but in grey, or I > get a white item number "1". There must be some obvious mistake, but > where? > > Thanks, and best > > Thomas