ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Re: How to make a figure not appear in the list of figures?
       [not found] <mailman.1.1184061603.17190.ntg-context@ntg.nl>
@ 2007-07-10 14:24 ` Duncan Hothersall
  2007-07-11  6:27   ` Wolfgang Schuster
  0 siblings, 1 reply; 4+ messages in thread
From: Duncan Hothersall @ 2007-07-10 14:24 UTC (permalink / raw)
  To: ntg-context

> Hi Duncan,
>
> place the figure with the normal \placefigure command, process to whole
> document, delete the unwanted figurelist entry in the tuo-file and 
> process
> the document another time, you can add the --once option in the last run.
>
> Wolfgang
Aah, nice workaround, thanks. That has got me sorted for today, though 
it would be great to understand, at a more leisurely pace, if there is a 
way to do this from within the .tex file. I was experimenting with 
wrapping the placefigure in something that stopped the list from being 
written, but didn't get anywhere.

Anyway, thanks a lot, this has saved my bacon for today. :-)

Duncan
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: How to make a figure not appear in the list of figures?
  2007-07-10 14:24 ` How to make a figure not appear in the list of figures? Duncan Hothersall
@ 2007-07-11  6:27   ` Wolfgang Schuster
  0 siblings, 0 replies; 4+ messages in thread
From: Wolfgang Schuster @ 2007-07-11  6:27 UTC (permalink / raw)
  To: mailing list for ConTeXt users

2007/7/10, Duncan Hothersall <dh@capdm.com>:
> > Hi Duncan,
> >
> > place the figure with the normal \placefigure command, process to whole
> > document, delete the unwanted figurelist entry in the tuo-file and
> > process
> > the document another time, you can add the --once option in the last run.
> >
> > Wolfgang
> Aah, nice workaround, thanks. That has got me sorted for today, though
> it would be great to understand, at a more leisurely pace, if there is a
> way to do this from within the .tex file. I was experimenting with
> wrapping the placefigure in something that stopped the list from being
> written, but didn't get anywhere.
>
> Anyway, thanks a lot, this has saved my bacon for today. :-)
>
> Duncan

Hi Duncan,

you can create floats that inherit the counter from another one with

\definefloat[nolistfigure][nolistfigures][figure]

and use in your document

\placenolistfigure{...}

Wolfgang
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: How to make a figure not appear in the list of figures?
  2007-07-10 11:49 Duncan Hothersall
@ 2007-07-10 12:42 ` Wolfgang Schuster
  0 siblings, 0 replies; 4+ messages in thread
From: Wolfgang Schuster @ 2007-07-10 12:42 UTC (permalink / raw)
  To: mailing list for ConTeXt users

2007/7/10, Duncan Hothersall <dh@capdm.com>:
> Hi folks,
>
> This is probably a simple problem but I can't find an answer.
>
> I have a book with a list of figures and have been asked not to include
> in the list a figure which does not have a caption, even though it has a
> number. So the numbering needs to be sequential, but one of the figures
> needs not to appear in the list of figures.
>
> If I define a new float type Nolistfigure with, e.g.
> \definefloat[Nolistfigure][figure]
> then it uses its own number, so I get effectively in the text:
>
> Figure 4.11
> Blah blah
> Nolistfigure 4.1
> Blah blah
> Figure 4.12
>
> when what I actually want is:
>
> Figure 4.11
> Blah blah
> Nolistfigure 4.12
> Blah blah
> Figure 4.13
>
>
> And then in the List of Figures, I want
>
> Figure 4.11
> Figure 4.13
>
> Can anyone get me a quick pointer? As ever, this request has come on the
> release day for this job, so anyone able to help today would be
> fabulous... :-) Thanks.
>
> Duncan

Hi Duncan,

place the figure with the normal \placefigure command, process to whole
document, delete the unwanted figurelist entry in the tuo-file and process
the document another time, you can add the --once option in the last run.

Wolfgang
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 4+ messages in thread

* How to make a figure not appear in the list of figures?
@ 2007-07-10 11:49 Duncan Hothersall
  2007-07-10 12:42 ` Wolfgang Schuster
  0 siblings, 1 reply; 4+ messages in thread
From: Duncan Hothersall @ 2007-07-10 11:49 UTC (permalink / raw)
  To: ConTeXt List

Hi folks,

This is probably a simple problem but I can't find an answer.

I have a book with a list of figures and have been asked not to include 
in the list a figure which does not have a caption, even though it has a 
number. So the numbering needs to be sequential, but one of the figures 
needs not to appear in the list of figures.

If I define a new float type Nolistfigure with, e.g.
\definefloat[Nolistfigure][figure]
then it uses its own number, so I get effectively in the text:

Figure 4.11
Blah blah
Nolistfigure 4.1
Blah blah
Figure 4.12

when what I actually want is:

Figure 4.11
Blah blah
Nolistfigure 4.12
Blah blah
Figure 4.13


And then in the List of Figures, I want

Figure 4.11
Figure 4.13

Can anyone get me a quick pointer? As ever, this request has come on the 
release day for this job, so anyone able to help today would be 
fabulous... :-) Thanks.

Duncan
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-07-11  6:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <mailman.1.1184061603.17190.ntg-context@ntg.nl>
2007-07-10 14:24 ` How to make a figure not appear in the list of figures? Duncan Hothersall
2007-07-11  6:27   ` Wolfgang Schuster
2007-07-10 11:49 Duncan Hothersall
2007-07-10 12:42 ` Wolfgang Schuster

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).