Re: [NTG-context] Columns and itemize not showing up as expected

2015-03-21 Thread Mikael P. Sundqvist
On Sat, Mar 21, 2015 at 2:54 PM, Norbert Melzer  wrote:
> This one works. Thank you!
>
>  Is there a way to have other column count than 2?

\startitemize[columns,three]

seems to give three columns.

/Mikael
___
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] Columns and itemize not showing up as expected

2015-03-21 Thread Norbert Melzer
2015-03-21 14:33 GMT+01:00 Mikael P. Sundqvist :
>
>\startitemize[columns]
>   \item a
>   \item b
>   \item c
>   \item d
>   \item e
>   \item f
> \stopitemize
> \stoptext
>

This one works. Thank you!

 Is there a way to have other column count than 2?
___
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] Columns and itemize not showing up as expected

2015-03-21 Thread Mikael P. Sundqvist
On Sat, Mar 21, 2015 at 1:38 PM, Norbert Melzer  wrote:
>   \startcolumns[n=2]
> \startitemize
>   \item a
>   \item b
>   \item c
>   \item d
>   \item e
>   \item f
> \stopitemize
>   \stopcolumns


Try

\starttext
  \startcolumns[n=2]
\startitemize
  \item a
  \item b
  \item c
  \item d
  \item e
  \item f
\stopitemize
  \stopcolumns

   \startitemize[columns]
  \item a
  \item b
  \item c
  \item d
  \item e
  \item f
\stopitemize
\stoptext

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

[NTG-context] Columns and itemize not showing up as expected

2015-03-21 Thread Norbert Melzer
The MWE at the end of this mail typesets something like this:

* a  * e
* b  * f
* c
* d

But I'd expect something like this:

* a  * d
* b  * e
* c  * f

How can I get expected output?

```tex
\starttext
  \startcolumns[n=2]
\startitemize
  \item a
  \item b
  \item c
  \item d
  \item e
  \item f
\stopitemize
  \stopcolumns
\stoptext
```
___
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
___