[NTG-context] Heading in setuplayout from a variable

2013-04-26 Thread Cecil Westerhof
It is a long time since I used ConTeXt. I am starting again.

I have the following code:
\setvariables[meta][type=cecil]

\if\getvariable{meta}{type}=cecil
  \setvariables[meta][
name={Cecil Westerhof},
  ]
  \setvariables[layout][
header=0mm,
  ]
\fi

But that does not work.

For the conditional I also tried:
\ifx\getvariable{meta}{type}\cecil

But that does not work either.

What is the correct way to define the comparison?

-- 
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
___


Re: [NTG-context] Heading in setuplayout from a variable

2013-04-26 Thread Hans Hagen

On 4/26/2013 1:27 PM, Cecil Westerhof wrote:

It is a long time since I used ConTeXt. I am starting again.

I have the following code:
\setvariables[meta][type=cecil]

\if\getvariable{meta}{type}=cecil
   \setvariables[meta][
 name={Cecil Westerhof},
   ]
   \setvariables[layout][
 header=0mm,
   ]
\fi

But that does not work.

For the conditional I also tried:
\ifx\getvariable{meta}{type}\cecil

But that does not work either.

What is the correct way to define the comparison?


\doifelse {\getvariable{meta}{type}} {cecil} {
...
} {
...
}

-
  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
___


Re: [NTG-context] Heading in setuplayout from a variable

2013-04-26 Thread Cecil Westerhof
2013/4/26 Cecil Westerhof cldwester...@gmail.com:
 I have the following code:
 \setvariables[meta][type=cecil]

This variable is hard coded. Is it possible to set it with a value I
send as a command line parameter?

-- 
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
___


Re: [NTG-context] Heading in setuplayout from a variable

2013-04-26 Thread Hans Hagen

On 4/26/2013 2:35 PM, Cecil Westerhof wrote:

2013/4/26 Cecil Westerhof cldwester...@gmail.com:

I have the following code:
\setvariables[meta][type=cecil]


This variable is hard coded. Is it possible to set it with a value I
send as a command line parameter?


\getdocumentargument{myargument}

of use modes (often more natural)

Hans

-
  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
___


Re: [NTG-context] Heading in setuplayout from a variable

2013-04-26 Thread Cecil Westerhof
2013/4/26 Hans Hagen pra...@wxs.nl:
 On 4/26/2013 2:35 PM, Cecil Westerhof wrote:

 2013/4/26 Cecil Westerhof cldwester...@gmail.com:

 I have the following code:
 \setvariables[meta][type=cecil]


 This variable is hard coded. Is it possible to set it with a value I
 send as a command line parameter?


 \getdocumentargument{myargument}

My first try did not work, but now it does. Properly made a silly
mistake somewhere.


 of use modes (often more natural)

In this case it is not something to use, but it is certainly something
to look into.

-- 
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
___