From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/20165 Path: news.gmane.org!not-for-mail From: Frank Grieshaber Newsgroups: gmane.comp.tex.context Subject: enumerated lists Date: Sun, 01 May 2005 21:40:17 +0200 Message-ID: <427530A1.4050108@online-resourcen.de> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1114976125 20997 80.91.229.2 (1 May 2005 19:35:25 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 1 May 2005 19:35:25 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Sun May 01 21:35:21 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 1DSKDW-0001Gh-6L for gctc-ntg-context-518@m.gmane.org; Sun, 01 May 2005 21:35:02 +0200 Original-Received: from localhost (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 0EEB9127DA; Sun, 1 May 2005 21:41:06 +0200 (CEST) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (ronja.vet.uu.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 32458-01; Sun, 1 May 2005 21:41:01 +0200 (CEST) Original-Received: from ronja.vet.uu.nl (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 00C2E12795; Sun, 1 May 2005 21:41:00 +0200 (CEST) Original-Received: from localhost (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id C9A7412795 for ; Sun, 1 May 2005 21:40:58 +0200 (CEST) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (ronja.vet.uu.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 32433-02 for ; Sun, 1 May 2005 21:40:58 +0200 (CEST) Original-Received: from server5.web4a.de (server5.web4a.de [82.149.231.244]) by ronja.ntg.nl (Postfix) with ESMTP id E2CAC12791 for ; Sun, 1 May 2005 21:40:57 +0200 (CEST) Original-Received: from [85.178.21.57] (e178021057.adsl.alicedsl.de [85.178.21.57]) by server5.web4a.de (server5.web4a.de) with ESMTP id 0716CC8069 for ; Sun, 1 May 2005 21:40:54 +0200 (CEST) User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050404) X-Accept-Language: de-DE, de, en-us, en Original-To: ntg-context@ntg.nl X-Virus-Scanned: by 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-Virus-Scanned: by amavisd-new at ntg.nl Xref: news.gmane.org gmane.comp.tex.context:20165 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:20165 Dear all, I have a manuscript with long nested numbered enumerations and I want the numbers of all levels to be printed like: 1. one 1.1 one-one 1.2 one-two 2. two 2.1 two-one 2.2.1 two-two-one ... Using the following prints only the current level's number, not all levels: \startitemize[n,packed] \item \item \startitemize[m,packed] \item \item \stopitemize \item \item \stopitemize For Latex there is the package paralist.sty for doing the desired numbering, how can this be done with ConTeXt? Frank