ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* \setupcombinations and the after-key
@ 2017-08-09 17:50 Mathias Schickel
  2017-08-09 19:18 ` Pablo Rodriguez
  0 siblings, 1 reply; 4+ messages in thread
From: Mathias Schickel @ 2017-08-09 17:50 UTC (permalink / raw)
  To: mailing list for ConTeXt users

[-- Attachment #1: Type: text/plain, Size: 247 bytes --]

Dear List,

it seems that the after key of the \setupcombinations-command is broken. I am not able to get zero space between the cells. I have attached a minimal example. Changing the after command does not have any effect at all.

Mathias


[-- Attachment #2: combinations.tex --]
[-- Type: application/x-tex, Size: 798 bytes --]

[-- Attachment #3: combinations.pdf --]
[-- Type: application/pdf, Size: 3076 bytes --]

[-- Attachment #4: Type: text/plain, Size: 492 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: \setupcombinations and the after-key
  2017-08-09 17:50 \setupcombinations and the after-key Mathias Schickel
@ 2017-08-09 19:18 ` Pablo Rodriguez
  2017-08-09 21:31   ` Mathias Schickel
  0 siblings, 1 reply; 4+ messages in thread
From: Pablo Rodriguez @ 2017-08-09 19:18 UTC (permalink / raw)
  To: ntg-context

On 08/09/2017 07:50 PM, Mathias Schickel wrote:
> Dear List,
> 
> it seems that the after key of the \setupcombinations-command is
broken. I am not able to get zero space between the cells. I have
attached a minimal example. Changing the after command does not have any
effect at all.

Matthias,

inbetween is the key, after is relative to the combination, not to the
individual frames (or combined elements).

BTW, A4 is the default. No need to set it up.

In this sense, I think there is no need to set width and height in the
layout. Unless I miss something, the paper size sets both dimensions.

    \setuplayout
      [backspace=0pt,
        topspace=0pt,
           width=middle,
          height=middle,
        location=middle,
          header=0pt,
          footer=0pt]
    \setupcombinations[distance=0mm, inbetween=]
    \starttext
    \startcombination[2*2]%
    {{\framed[width=.5\textwidth,
            height=.5\textheight]{1}}}
    {{\framed[width=.5\textwidth,
            height=.5\textheight]{2}}}
    {{\framed[width=.5\textwidth,
            height=.5\textheight]{3}}}
    {{\framed[width=.5\textwidth,
            height=.5\textheight]{4}}}
    \stopcombination
    \stoptext

Just in case it helps,

Pablo
-- 
http://www.ousia.tk
___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: \setupcombinations and the after-key
  2017-08-09 19:18 ` Pablo Rodriguez
@ 2017-08-09 21:31   ` Mathias Schickel
  2017-08-09 21:57     ` Pablo Rodriguez
  0 siblings, 1 reply; 4+ messages in thread
From: Mathias Schickel @ 2017-08-09 21:31 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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


> Am 09.08.2017 um 21:18 schrieb Pablo Rodriguez <oinos@gmx.es>:
> 
> On 08/09/2017 07:50 PM, Mathias Schickel wrote:
>> Dear List,
>> 
>> it seems that the after key of the \setupcombinations-command is
> broken. I am not able to get zero space between the cells. I have
> attached a minimal example. Changing the after command does not have any
> effect at all.
> 
> Matthias,
> 
> inbetween is the key, after is relative to the combination, not to the
> individual frames (or combined elements).
> 
> BTW, A4 is the default. No need to set it up.
> 
> In this sense, I think there is no need to set width and height in the
> layout. Unless I miss something, the paper size sets both dimensions.
> 
>    \setuplayout
>      [backspace=0pt,
>        topspace=0pt,
>           width=middle,
>          height=middle,
>        location=middle,
>          header=0pt,
>          footer=0pt]
>    \setupcombinations[distance=0mm, inbetween=]
>    \starttext
>    \startcombination[2*2]%
>    {{\framed[width=.5\textwidth,
>            height=.5\textheight]{1}}}
>    {{\framed[width=.5\textwidth,
>            height=.5\textheight]{2}}}
>    {{\framed[width=.5\textwidth,
>            height=.5\textheight]{3}}}
>    {{\framed[width=.5\textwidth,
>            height=.5\textheight]{4}}}
>    \stopcombination
>    \stoptext
> 
> Just in case it helps,
> 

Hi Pablo,

thank you a lot! This was really helpful. Maybe the garden page should be altered then. If you have a look at

http://wiki.contextgarden.net/Command/setupcombinations <http://wiki.contextgarden.net/Command/setupcombinations>

you get the impression that „after“ is the key I was looking for because the page says:

Suppressing both the horizontal and vertical gap between cells:
\setupcombinations[distance=0mm,after=]
a 10mm horizontal and vertical gap between cells:
\setupcombinations[distance=10mm,after={\blank[10mm]}]

Best, and thanks again,
Mathias


> Pablo
> -- 
> http://www.ousia.tk
> ___________________________________________________________________________________
> 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://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________


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

[-- Attachment #2: Type: text/plain, Size: 492 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: \setupcombinations and the after-key
  2017-08-09 21:31   ` Mathias Schickel
@ 2017-08-09 21:57     ` Pablo Rodriguez
  0 siblings, 0 replies; 4+ messages in thread
From: Pablo Rodriguez @ 2017-08-09 21:57 UTC (permalink / raw)
  To: ntg-context

On 08/09/2017 11:31 PM, Mathias Schickel wrote:
> Hi Pablo,
> 
> thank you a lot! This was really helpful. Maybe the garden page should
> be altered then. If you have a look at
> 
> http://wiki.contextgarden.net/Command/setupcombinations
> 
> you get the impression that „after“ is the key I was looking for because
> the page says:
> 
>   * Suppressing both the horizontal and vertical gap between cells:
> 
> \setupcombinations[distance=0mm,after=]
> 
>   * a 10mm horizontal and vertical gap between cells:
> 
> \setupcombinations[distance=10mm,after={\blank[10mm]}]
Please, update the wiki, but first consider this:

\setupexternalfigures[location={local, default}]
\setupcombination
    [distance=5em,
     inbetween={\blackrule[width=.5\textwidth, color=red, height=1em]},
     after={\blackrule[width=.5\textwidth, color=green, height=5em]}]
\starttext
\placefigure
    [here]                                       % figure placement
    [fig:combinations]                           % figure reference
    {An example of combination.} % figure caption
    {\startcombination[3*2]      % contents of the figure: a combination
        % first row
        {\externalfigure[cow][height=1cm]}{a}   % subfigure and subcaption
        {\externalfigure[cow][height=1cm]}{b}
        {\externalfigure[cow][height=1cm]}{c}
        % second row
        {\externalfigure[cow][height=1cm]}{d}
        {\externalfigure[cow][height=1cm]}{e}
        {\externalfigure[cow][height=1cm]}{f}
     \stopcombination}
\stoptext

Probably adding a sample similar to this makes sense.

Just in case it helps,

Pablo
-- 
http://www.ousia.tk
___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

end of thread, other threads:[~2017-08-09 21:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-09 17:50 \setupcombinations and the after-key Mathias Schickel
2017-08-09 19:18 ` Pablo Rodriguez
2017-08-09 21:31   ` Mathias Schickel
2017-08-09 21:57     ` Pablo Rodriguez

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