ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* placefigure and listoffigures
@ 2016-03-15 20:43 Alan BRASLAU
  2016-03-15 21:11 ` Willi Egger
  2016-03-15 22:01 ` Wolfgang Schuster
  0 siblings, 2 replies; 4+ messages in thread
From: Alan BRASLAU @ 2016-03-15 20:43 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hi,

How can one suppress the addition of a placed figure to the
listoffigures?

In the following MWE, list=no places "no" as an alternative to the
(blank) title.

Alan


\starttext

\startplacefigure [location=inmargin,number=no,list=no]
  \externalfigure [cow] [width=1cm]
\stopplacefigure
\input knuth

\blank

\placelistoffigures [criterium=all]

\stoptext
___________________________________________________________________________________
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  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: placefigure and listoffigures
  2016-03-15 20:43 placefigure and listoffigures Alan BRASLAU
@ 2016-03-15 21:11 ` Willi Egger
  2016-03-15 22:01 ` Wolfgang Schuster
  1 sibling, 0 replies; 4+ messages in thread
From: Willi Egger @ 2016-03-15 21:11 UTC (permalink / raw)
  To: NTG-Context ConTeXt users

I would define another float and assign this not to be listed float to this new float-type something like \definefloat[Notlisted][figure] and then
\startplaceNotlisted
	\externalf…
\stopplaceNotlisted

Best wishes

Willi
> On 15 mrt. 2016, at 21:43, Alan BRASLAU <alan.braslau@cea.fr> wrote:
> 
> Hi,
> 
> How can one suppress the addition of a placed figure to the
> listoffigures?
> 
> In the following MWE, list=no places "no" as an alternative to the
> (blank) title.
> 
> Alan
> 
> 
> \starttext
> 
> \startplacefigure [location=inmargin,number=no,list=no]
>  \externalfigure [cow] [width=1cm]
> \stopplacefigure
> \input knuth
> 
> \blank
> 
> \placelistoffigures [criterium=all]
> 
> \stoptext
> ___________________________________________________________________________________
> 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  : http://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________

___________________________________________________________________________________
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  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: placefigure and listoffigures
  2016-03-15 20:43 placefigure and listoffigures Alan BRASLAU
  2016-03-15 21:11 ` Willi Egger
@ 2016-03-15 22:01 ` Wolfgang Schuster
  2016-03-15 22:39   ` Alan BRASLAU
  1 sibling, 1 reply; 4+ messages in thread
From: Wolfgang Schuster @ 2016-03-15 22:01 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 405 bytes --]

> Alan BRASLAU <mailto:alan.braslau@cea.fr>
> 15. März 2016 um 21:43
> Hi,
>
> How can one suppress the addition of a placed figure to the
> listoffigures?
>
> In the following MWE, list=no places "no" as an alternative to the
> (blank) title.
>
> Alan
>
>
> \starttext
>
> \startplacefigure [location=inmargin,number=no,list=no]
\startplacefigure [location={inmargin,none}]

Wolfgang

[-- Attachment #1.2: Type: text/html, Size: 1411 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: placefigure and listoffigures
  2016-03-15 22:01 ` Wolfgang Schuster
@ 2016-03-15 22:39   ` Alan BRASLAU
  0 siblings, 0 replies; 4+ messages in thread
From: Alan BRASLAU @ 2016-03-15 22:39 UTC (permalink / raw)
  To: Wolfgang Schuster; +Cc: mailing list for ConTeXt users

On Tue, 15 Mar 2016 23:01:46 +0100
Wolfgang Schuster <schuster.wolfgang@gmail.com> wrote:

> \startplacefigure [location={inmargin,none}]

Thank you, clean and elegant (and much easier than Willi's suggestion).
The syntax is a bit magical, though ("location" of the caption).

Alan
___________________________________________________________________________________
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  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

end of thread, other threads:[~2016-03-15 22:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-15 20:43 placefigure and listoffigures Alan BRASLAU
2016-03-15 21:11 ` Willi Egger
2016-03-15 22:01 ` Wolfgang Schuster
2016-03-15 22:39   ` Alan BRASLAU

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).