On Sat, 22 Sep 2007 20:56:33 +0200
"G.C.H.M. Verhaag"
Dear ConTeXt Users,
Last week I posted a completelistoffigures question, but unfortunately nobody responded to it! That's why I give it another try, because I don't know how to tackle this problem.
I'd like to generate a list of figures that only have a caption description, but no figure (\setupcaptions[...,number=no,....]) number.
Using the setupcaptions command in the preamble with the number=no option yields only the title Figures of the list of figures, nothing more! However, when I change the number option of the setupcaptions command to yes, the list is generated correctly. But I don't want a figure number to appear in the caption of a figure! The figures appear throughout a book I'm currently writing using ConTeXt.
Is there a way to accomplish the desired effect using the completelistoffigures command?
Please can anybody give a hint! Thanks!
Regards, Gerard
Hi Gerard, you can use the following method, it is very dirty but it works and give you what you want. \setupcaption[figure][distance=\zeropoint] \defineconversion[gobble][\gobbleoneargument] \setupnumber[figure][conversion=gobble] \setuplabeltext[figure=] \starttext \completelistoffigures \page \placefigure{First Figure}{\blackrule[width=4cm,height=2cm]} \placefigure{Second Figure}{\blackrule[width=3cm,height=5cm]} \stoptext Wolfgang