how can I start an itemization with 2
I have tried snippets like
\setupitemgroup[[itemize][start=2] \startitemize[n] \item zwei \item drei \stopitemize
but could'nt found a solution.
Btw.: Is there a differenz between
\setupitemize[]
and
\setupitemgroup[[itemize][]
Wolfgang
Hi Wolfgang,
\setupitemize is only macro for \setupitemgroup[itemize] and is generated with \defineitemgroup like many other setup commands.
To start your enumeration with 2 you have to define your own number conversion.
\def\nextnumber#1{\the\numexpr#1+1\relax}
\defineconversion[nn][\nextnumber]
\starttext \startitemize[nn] \item zwei \item drei \stopitemize \stoptext
Wolfgang
Hi Wolfgang! This works! But two questions remain: 1) I am wondering, how you find such answers. What is your strategie searching the sources? 2) What is that existing option 'start' for? Take this as an example for question 1). Wolfgang