From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/11082 Path: main.gmane.org!not-for-mail From: Hans Hagen Newsgroups: gmane.comp.tex.context Subject: Re: new line in \writetolist ? Date: Wed, 19 Feb 2003 10:25:26 +0100 Sender: ntg-context-admin@ntg.nl Message-ID: <5.1.0.14.0.20030219102318.03831558@server-1> References: <707AD9A0-405E-11D7-A0B0-0030659899AA@fiee.net> Reply-To: ntg-context@ntg.nl NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Trace: main.gmane.org 1045654835 19002 80.91.224.249 (19 Feb 2003 11:40:35 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 19 Feb 2003 11:40:35 +0000 (UTC) Return-path: Original-Received: from ref.vet.uu.nl ([131.211.172.13] helo=ref.ntg.nl) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18lSaN-0004w6-00 for ; Wed, 19 Feb 2003 12:40:23 +0100 Original-Received: from ref.ntg.nl (localhost.localdomain [127.0.0.1]) by ref.ntg.nl (Postfix) with ESMTP id 5359E10AF9; Wed, 19 Feb 2003 12:40:24 +0100 (MET) Original-Received: from mail.solcon.nl (mail.solcon.nl [212.45.33.11]) by ref.ntg.nl (Postfix) with ESMTP id 632C910AEF for ; Wed, 19 Feb 2003 12:38:29 +0100 (MET) Original-Received: from server-1.pragma-ade.nl (wc-58016.solcon.nl [212.45.58.16]) by mail.solcon.nl (8.12.5/pre1.0-MySQL/8.12.5) with ESMTP id h1JBcP2X003961 for ; Wed, 19 Feb 2003 12:38:25 +0100 Original-Received: from LAPTOP-3.wxs.nl (laptop-3 [10.100.1.191]) by server-1.pragma-ade.nl (8.12.3/8.12.2) with ESMTP id h1JBcRt5032371 for ; Wed, 19 Feb 2003 12:38:27 +0100 X-Sender: hagen-mail@server-1 X-Mailer: QUALCOMM Windows Eudora Version 5.1 Original-To: ntg-context@ntg.nl In-Reply-To: <707AD9A0-405E-11D7-A0B0-0030659899AA@fiee.net> X-RAVMilter-Version: 8.4.1(snapshot 20020919) (mail.solcon.nl) 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:11082 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:11082 At 09:53 PM 2/14/2003 +0100, you wrote: >Same question again, perhaps a bit more clear... >(And, please, I need an answer until Sunday! Thanks.) > >How can I make a line break in an \writetolist entry? >e.g. >\writetolist[chapter]{This is a very long chapter name\\that doesn't fit >in one line} > >Neither \\ nor \crlf does anything. You can always define a command yourself, say: \unexpanded\def\MyBreak{ } ^^^^^^^^^^^ prevents problems in comparisons \writetolist[...]{...... MyBreak ....} and then redefine \MyBreak when you include the list, say: \def\MyBreak{\crlf\hskip1em} Hans