From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/31893 Path: news.gmane.org!not-for-mail From: "Karsten Heymann" Newsgroups: gmane.comp.tex.context Subject: Bug in Description? Date: Thu, 16 Nov 2006 21:05:53 +0100 Message-ID: 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 1163707621 13687 80.91.229.2 (16 Nov 2006 20:07:01 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 16 Nov 2006 20:07:01 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Thu Nov 16 21:06:58 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 1GknVd-0002At-VW for gctc-ntg-context-518@m.gmane.org; Thu, 16 Nov 2006 21:06:54 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 821731FF1C; Thu, 16 Nov 2006 21:06:26 +0100 (CET) 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 24498-07; Thu, 16 Nov 2006 21:06:17 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id EFC771FF18; Thu, 16 Nov 2006 21:06:16 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id A97BD1FF1C for ; Thu, 16 Nov 2006 21:06:14 +0100 (CET) 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 24383-07 for ; Thu, 16 Nov 2006 21:06:06 +0100 (CET) Original-Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.181]) by ronja.ntg.nl (Postfix) with SMTP id 5BE961FEF2 for ; Thu, 16 Nov 2006 21:06:04 +0100 (CET) Original-Received: by py-out-1112.google.com with SMTP id w49so402029pyg for ; Thu, 16 Nov 2006 12:05:54 -0800 (PST) Original-Received: by 10.35.60.16 with SMTP id n16mr1463786pyk.1163707553742; Thu, 16 Nov 2006 12:05:53 -0800 (PST) Original-Received: by 10.35.16.10 with HTTP; Thu, 16 Nov 2006 12:05:53 -0800 (PST) Original-To: "mailing list for ConTeXt users" Content-Disposition: inline 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:31893 Archived-At: Hello, I need to mimick enumerated lists with descriptions, as the list labels are passed to context by an external program. For this I need the text after the label indented exactly as far as the following lines. Following the wiki I set distance=0cm, but this does not seem to be honored, but setting it to a very small value does work. So I suppose it's a bug. Yours, Karsten \definedescription[DescA][align=left,location=hanging,width=1cm,margin=1cm,distance=0cm] \definedescription[DescB][align=left,location=hanging,width=1cm,margin=1cm,distance=0.0001cm] \starttext Wrong: \DescA{1.} \input knuth \DescA{2.} \input knuth Right: \DescB{1.} \input knuth \DescB{2.} \input knuth \stoptext