From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/30911 Path: news.gmane.org!not-for-mail From: Wolfgang Schuster Newsgroups: gmane.comp.tex.context Subject: Re: How to make \placelistoffigures separate figures by chapter Date: Wed, 20 Sep 2006 11:33:12 +0200 Message-ID: <20060920113312.c7c4d3c0.schuster.wolfgang@googlemail.com> References: <450FE574.5070606@nibua-r.org> <20060919160013.9e644e89.schuster.wolfgang@googlemail.com> <4510E22E.9000204@nibua-r.org> 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 1158744939 10034 80.91.229.2 (20 Sep 2006 09:35:39 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 20 Sep 2006 09:35:39 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Wed Sep 20 11:35:35 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 1GPyUL-0001uZ-9S for gctc-ntg-context-518@m.gmane.org; Wed, 20 Sep 2006 11:35:29 +0200 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id E3C231FDF5; Wed, 20 Sep 2006 11:35: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 00583-05; Wed, 20 Sep 2006 11:35:26 +0200 (CEST) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 62C5A1FCF3; Wed, 20 Sep 2006 11:33:37 +0200 (CEST) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id C72AD1FCF3 for ; Wed, 20 Sep 2006 11:33:31 +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 00583-02-4 for ; Wed, 20 Sep 2006 11:33:23 +0200 (CEST) Original-Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.185]) by ronja.ntg.nl (Postfix) with SMTP id 76CC81FCDB for ; Wed, 20 Sep 2006 11:33:21 +0200 (CEST) Original-Received: by nf-out-0910.google.com with SMTP id d4so394897nfe for ; Wed, 20 Sep 2006 02:33:20 -0700 (PDT) Original-Received: by 10.78.202.19 with SMTP id z19mr4413323huf; Wed, 20 Sep 2006 02:33:20 -0700 (PDT) Original-Received: from unknown ( [217.185.118.218]) by mx.gmail.com with ESMTP id 36sm520132huc.2006.09.20.02.33.18; Wed, 20 Sep 2006 02:33:19 -0700 (PDT) Original-To: ntg-context@ntg.nl In-Reply-To: <4510E22E.9000204@nibua-r.org> X-Mailer: Sylpheed version 2.2.6 (GTK+ 2.6.10; i686-pc-mingw32) 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:30911 Archived-At: On Wed, 20 Sep 2006 08:39:42 +0200 Renaud AUBIN wrote: > > >Can you send a PDF of your file, I have no problems with your example > >an get the result you wanted. > > > >ConTeXt ver: 2006.08.08 21:51 fmt: 2006.9.5 int: english mes: english > >ConTeXt ver: 2006.09.07 17:50 MK II fmt: 2006.9.8 int: english/english > > > >Which ConTeXt version do you use. > > > >Wolfgang > > > > > Did you noticed the blank line between 1.3/2.1 and 2.3/3.1 ? > > Renaud No, I didn't looked at the blank lines in your list of figures. This works for me. \starttext \setuphead[chapter][after=\dowritebetweenlist{figure}{\blank[big]}] % the magic \placelistoffigures[alternative=c,level=all,interaction=all,partnumber=no] \setupexternalfigures[location={local,global,default}] % not everyone has global figuresearching enabled \useexternalfigure[testfig][cow][width=.5\textwidth] \startbuffer \placefigure[here]{test 1}{\externalfigure[testfig]} \placefigure[here]{test 2}{\externalfigure[testfig]} \placefigure[here]{test 3}{\externalfigure[testfig]} \stopbuffer \dorecurse{3}{ \chapter{A Chapter} \placefigure[here]{test 1}{\externalfigure[testfig]} \placefigure[here]{test 2}{\externalfigure[testfig]} \placefigure[here]{test 3}{\externalfigure[testfig]} } \stoptext Wolfgang