ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* get rid of placefigure and startcombination captions
       [not found] <mailman.1450.1245850445.3589.ntg-context@ntg.nl>
@ 2009-06-24 14:48 ` Vyatcheslav Yatskovsky
  2009-06-24 19:09   ` Thomas A. Schmitz
  0 siblings, 1 reply; 4+ messages in thread
From: Vyatcheslav Yatskovsky @ 2009-06-24 14:48 UTC (permalink / raw)
  To: ntg-context

Hello,

Another urgent problem:

how to get rid of placefigure and startcombination captions altogether?

When I use the following, I get too much wasted space after the 
illustration.

\placefigure
[fit]
{none}
{\startcombination[4*1]
     {\externalfigure[serg1][width=4cm]} {}
     {\externalfigure[serg2][width=4cm]} {}
     {\externalfigure[serg3][width=4cm]} {}
     {\externalfigure[serg4][width=4cm]} {}
\stopcombination}

Best,
Vyatcheslav
___________________________________________________________________________________
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: get rid of placefigure and startcombination captions
  2009-06-24 14:48 ` get rid of placefigure and startcombination captions Vyatcheslav Yatskovsky
@ 2009-06-24 19:09   ` Thomas A. Schmitz
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas A. Schmitz @ 2009-06-24 19:09 UTC (permalink / raw)
  To: mailing list for ConTeXt users


On Jun 24, 2009, at 4:48 PM, Vyatcheslav Yatskovsky wrote:

> Hello,
>
> Another urgent problem:
>
> how to get rid of placefigure and startcombination captions  
> altogether?
>
> When I use the following, I get too much wasted space after the  
> illustration.
>
> \placefigure
> [fit]
> {none}
> {\startcombination[4*1]
>    {\externalfigure[serg1][width=4cm]} {}
>    {\externalfigure[serg2][width=4cm]} {}
>    {\externalfigure[serg3][width=4cm]} {}
>    {\externalfigure[serg4][width=4cm]} {}
> \stopcombination}
>
> Best,
> Vyatcheslav

I'm not sure I understand your problem. If you don't want a caption  
and don't want the figure to float, why do you use \placefigure at  
all? Just remove the wrapper and put \startcombination etc. directly  
into your source file.

Thomas
___________________________________________________________________________________
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: get rid of placefigure and startcombination captions
  2009-06-26 11:42 Vyatcheslav Yatskovsky
@ 2009-06-27 21:09 ` Thomas Floeren
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Floeren @ 2009-06-27 21:09 UTC (permalink / raw)
  To: mailing list for ConTeXt users


On Jun 26, 2009, at 1:42 PM, Vyatcheslav Yatskovsky wrote:

> Hello
>
> I used \placefigure just for centering the figure. And even if I put  
> \startcombination directly, won't it reserve blank space for empty  
> subcaptions?
>
> Actually, I found nice snipped that works like a charm for my needs:
>
> \hbox to \hsize{
> \externalfigure[serg1][width=3.5cm]
> \hss\externalfigure[serg2][width=3.5cm]
> \hss\externalfigure[serg4][width=3.5cm]
> \hss\externalfigure[serg3][width=3.5cm]}
>
> ...and no combinations needed! ))
>
> Vyatcheslav
>
>> Hello,
>> >
>> > Another urgent problem:
>> >
>> > how to get rid of placefigure and startcombination captions
>> > altogether?
>> >
>> > When I use the following, I get too much wasted space after the
>> > illustration.
>> >
>> > \placefigure
>> > [fit]
>> > {none}
>> > {\startcombination[4*1]
>> >    {\externalfigure[serg1][width=4cm]} {}
>> >    {\externalfigure[serg2][width=4cm]} {}
>> >    {\externalfigure[serg3][width=4cm]} {}
>> >    {\externalfigure[serg4][width=4cm]} {}
>> > \stopcombination}
>> >
>> > Best,
>> > Vyatcheslav
>>
>>
>> I'm not sure I understand your problem. If you don't want a caption
>> and don't want the figure to float, why do you use \placefigure at
>> all? Just remove the wrapper and put \startcombination etc. directly
>> into your source file.
>>
>> Thomas
>>
pay also attention to the syntax
(1) "\placefigure[...]{none}"
vs.
  (2) "\placefigure[...,none]{}"

In MkII the two delivered the same output, in MkIV variant (1) will  
reserve some kind of space for the non-existant caption.
I don’t know if this is intended or a bug.

Example:

\starttext
\placefigure[here]{none}{\externalfigure[dummy]}
\dorecurse{30}{blabla }

\placefigure[here,none]{}{\externalfigure[dummy]}
\dorecurse{30}{blabla }
\stoptext

Greetings
Tom
> _________________

___________________________________________________________________________________
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: get rid of placefigure and startcombination captions
@ 2009-06-26 11:42 Vyatcheslav Yatskovsky
  2009-06-27 21:09 ` Thomas Floeren
  0 siblings, 1 reply; 4+ messages in thread
From: Vyatcheslav Yatskovsky @ 2009-06-26 11:42 UTC (permalink / raw)
  To: ntg-context


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

Hello

I used \placefigure just for centering the figure. And even if I put 
\startcombination directly, won't it reserve blank space for empty 
subcaptions?

Actually, I found nice snipped that works like a charm for my needs:

\hbox to \hsize{
\externalfigure[serg1][width=3.5cm]
\hss\externalfigure[serg2][width=3.5cm]
\hss\externalfigure[serg4][width=3.5cm]
\hss\externalfigure[serg3][width=3.5cm]}

...and no combinations needed! ))

Vyatcheslav

> Hello,
> >
> >  Another urgent problem:
> >
> >  how to get rid of placefigure and startcombination captions
> >  altogether?
> >
> >  When I use the following, I get too much wasted space after the
> >  illustration.
> >
> >  \placefigure
> >  [fit]
> >  {none}
> >  {\startcombination[4*1]
> >      {\externalfigure[serg1][width=4cm]} {}
> >      {\externalfigure[serg2][width=4cm]} {}
> >      {\externalfigure[serg3][width=4cm]} {}
> >      {\externalfigure[serg4][width=4cm]} {}
> >  \stopcombination}
> >
> >  Best,
> >  Vyatcheslav
>    
>
> I'm not sure I understand your problem. If you don't want a caption
> and don't want the figure to float, why do you use \placefigure at
> all? Just remove the wrapper and put \startcombination etc. directly
> into your source file.
>
> Thomas
>    

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

[-- Attachment #2: Type: text/plain, Size: 487 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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

end of thread, other threads:[~2009-06-27 21:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <mailman.1450.1245850445.3589.ntg-context@ntg.nl>
2009-06-24 14:48 ` get rid of placefigure and startcombination captions Vyatcheslav Yatskovsky
2009-06-24 19:09   ` Thomas A. Schmitz
2009-06-26 11:42 Vyatcheslav Yatskovsky
2009-06-27 21:09 ` Thomas Floeren

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