[NTG-context] problem with defineitemgroup command

2009-03-02 Thread Curious Learn
I am trying to define an itemgroup to list the answers for multiple choice
questions. When I try to change the stopper using the option stopper=), the list
changes from an alphabetical one to a bulleted list. Please see the difference
between "choices" and "options" below. 

\defineitemgroup[choices][levels=1] 
\setupitemgroup[choices][1][a,packed] 

\defineitemgroup[options][levels=1] 
\setupitemgroup[options][1][a,packed,stopper=)]



\starttext
  
 \startchoices
 \startitem This is choice 1. \stopitem   
 \startitem This is choice 2. \stopitem
 \stopchoices 

 \startoptions
 \startitem This is option 1. \stopitem   
 \startitem This is option 2. \stopitem
 \stopoptions


\stoptext
   
Q. How can I change the stopper in this itemgroup.

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


Re: [NTG-context] problem with defineitemgroup command

2009-03-02 Thread Aditya Mahajan

On Tue, 3 Mar 2009, Curious Learn wrote:


I am trying to define an itemgroup to list the answers for multiple choice
questions. When I try to change the stopper using the option stopper=), the list
changes from an alphabetical one to a bulleted list. Please see the difference
between "choices" and "options" below.

\defineitemgroup[choices][levels=1]
\setupitemgroup[choices][1][a,packed]

\defineitemgroup[options][levels=1]
\setupitemgroup[options][1][a,packed,stopper=)]


Change this to

\setupitemgroup[options][1][a,packed]
\setupitemgroup[options][1][stopper=)]

You cannot mix options (a, packed, etc) with assignments (key=value).

Aditya



\starttext

\startchoices
\startitem This is choice 1. \stopitem
\startitem This is choice 2. \stopitem
\stopchoices

\startoptions
\startitem This is option 1. \stopitem
\startitem This is option 2. \stopitem
\stopoptions


\stoptext

Q. How can I change the stopper in this itemgroup.

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


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


Re: [NTG-context] problem with defineitemgroup command

2009-03-03 Thread Curious Learn
Aditya Mahajan  umich.edu> writes:


> Change this to
> 
> \setupitemgroup[options][1][a,packed]
> \setupitemgroup[options][1][stopper=)]
> 
> You cannot mix options (a, packed, etc) with assignments (key=value).
> 
> Aditya

Thanks Aditya. I appreciate it.

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