ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Why does startlines not work in a function
@ 2013-04-26 15:19 Cecil Westerhof
  2013-04-26 16:21 ` Hans Hagen
  0 siblings, 1 reply; 3+ messages in thread
From: Cecil Westerhof @ 2013-04-26 15:19 UTC (permalink / raw)
  To: mailing list for ConTeXt users

I have the following code:
\startlines
      \startalignment[center]
        \setupindenting[no]
        \doifelse {\getvariable{meta}{personalInfo}} {long} {
          longline 1
          longline 2
          longline 3
          longline 4
          longline 5
          longline 6
          longline 7
          longline 8
        } {
          shortline 1
          shortline 2
          shortline 3
          shortline 4
        }
      \stopalignment
\stoplines

I wanted to put this in a function. So I wrote:
\def\Foo{
  \startlines
    \startalignment[center]
      \setupindenting[no]
      \doifelse {\getvariable{meta}{personalInfo}} {long} {
        longline 1
        longline 2
        longline 3
        longline 4
        longline 5
        longline 6
        longline 7
        longline 8
      } {
        shortline 1
        shortline 2
        shortline 3
        shortline 4
      }
    \stopalignment
  \stoplines
}

But then the text becomes one line instead of several lines.


So I had to rewrite it to:
\def\FooTwo{
  \startalignment[center]
    \setupindenting[no]
    \doifelse {\getvariable{meta}{personalInfo}} {long} {
      longline 1

      longline 2

      longline 3

      longline 4

      longline 5

      longline 6

      longline 7

      longline 8
    } {
      shortline 1

      shortline 2

      shortline 3

      shortline 4
    }
  \stopalignment
}


I called it first Foo2, but that worked havoc on Foo.

-- 
Cecil Westerhof
___________________________________________________________________________________
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] 3+ messages in thread

* Re: Why does startlines not work in a function
  2013-04-26 15:19 Why does startlines not work in a function Cecil Westerhof
@ 2013-04-26 16:21 ` Hans Hagen
  2013-04-26 20:30   ` Cecil Westerhof
  0 siblings, 1 reply; 3+ messages in thread
From: Hans Hagen @ 2013-04-26 16:21 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 4/26/2013 5:19 PM, Cecil Westerhof wrote:
> I have the following code:
 > ...
> But then the text becomes one line instead of several lines.

because catcode changes are involved

\startbuffer [meta:personalInfo:long]
\startlines
longline 1
longline 2
longline 3
longline 4
longline 5
longline 6
longline 7
longline 8
\stoplines
\stopbuffer

\startbuffer [meta:personalInfo:]
\startlines
shortline 1
shortline 2
shortline 3
shortline 4
\stoplines
\stopbuffer

\starttext

     \getbuffer[meta:personalInfo:\getvariable{meta}{personalInfo}]

\stoptext

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
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] 3+ messages in thread

* Re: Why does startlines not work in a function
  2013-04-26 16:21 ` Hans Hagen
@ 2013-04-26 20:30   ` Cecil Westerhof
  0 siblings, 0 replies; 3+ messages in thread
From: Cecil Westerhof @ 2013-04-26 20:30 UTC (permalink / raw)
  To: mailing list for ConTeXt users

2013/4/26 Hans Hagen <pragma@wxs.nl>:
> On 4/26/2013 5:19 PM, Cecil Westerhof wrote:
>>
>> I have the following code:
>
>> ...
>
>> But then the text becomes one line instead of several lines.
>
>
> because catcode changes are involved
>
> \startbuffer [meta:personalInfo:long]
> \startlines
>
> longline 1
> longline 2
> longline 3
> longline 4
> longline 5
> longline 6
> longline 7
> longline 8
> \stoplines
> \stopbuffer
>
> \startbuffer [meta:personalInfo:]
> \startlines
>
> shortline 1
> shortline 2
> shortline 3
> shortline 4
> \stoplines
> \stopbuffer
>
> \starttext
>
>     \getbuffer[meta:personalInfo:\getvariable{meta}{personalInfo}]
>
> \stoptext

Works. Thanks.

-- 
Cecil Westerhof
___________________________________________________________________________________
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] 3+ messages in thread

end of thread, other threads:[~2013-04-26 20:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-04-26 15:19 Why does startlines not work in a function Cecil Westerhof
2013-04-26 16:21 ` Hans Hagen
2013-04-26 20:30   ` Cecil Westerhof

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