Re: [NTG-context] Skipping item numbers in an itemized list?

2011-04-27 Thread Wolfgang Schuster
Am 27.04.2011 um 15:53 schrieb Alasdair McAndrew: Hello, The effect I want is something like: 1. First item 2. Second item 5. Fifth item 6. Sixth item 8. Eight item and so on. Every now and then I need to skip a number or two. In LaTeX I could do this with

Re: [NTG-context] Skipping item numbers in an itemized list?

2011-04-27 Thread Otared Kavian
Hi Alasdair, Is this what you want? \starttext \startitemize[n] \dorecurse{4}{\item text} \stopitemize \input knuth.tex \startitemize[n,continue] \dorecurse{4}{\item text} \stopitemize \startitemize[n][start=17] \dorecurse{4}{\item text} \stopitemize \stoptext I have this from an answer by

Re: [NTG-context] Skipping item numbers in an itemized list?

2011-04-27 Thread Ulrike Fischer
Am Wed, 27 Apr 2011 16:19:45 +0200 schrieb Wolfgang Schuster: Am 27.04.2011 um 15:53 schrieb Alasdair McAndrew: Hello, The effect I want is something like: 1. First item 2. Second item 5. Fifth item 6. Sixth item 8. Eight item and so on. Every now and then I need to skip a

Re: [NTG-context] Skipping item numbers in an itemized list?

2011-04-27 Thread Andreas Harder
Am 27.04.2011 um 16:39 schrieb Ulrike Fischer: Am Wed, 27 Apr 2011 16:19:45 +0200 schrieb Wolfgang Schuster: Am 27.04.2011 um 15:53 schrieb Alasdair McAndrew: Hello, The effect I want is something like: 1. First item 2. Second item 5. Fifth item 6. Sixth item 8. Eight item

Re: [NTG-context] Skipping item numbers in an itemized list?

2011-04-27 Thread Aditya Mahajan
On Wed, 27 Apr 2011, Ulrike Fischer wrote: Am Wed, 27 Apr 2011 16:19:45 +0200 schrieb Wolfgang Schuster: Am 27.04.2011 um 15:53 schrieb Alasdair McAndrew: Hello, The effect I want is something like: 1. First item 2. Second item 5. Fifth item 6. Sixth item 8. Eight item and so on.

Re: [NTG-context] Skipping item numbers in an itemized list?

2011-04-27 Thread Ulrike Fischer
Am Wed, 27 Apr 2011 11:21:31 -0400 (EDT) schrieb Aditya Mahajan: and so on. Every now and then I need to skip a number or two. In LaTeX I could do this with \addtocounter{enumi}{2} - but how is this done in ConTeXt? \starttext \startitemize \sym{1.} First item \sym{2.} Second item

Re: [NTG-context] Skipping item numbers in an itemized list?

2011-04-27 Thread Alasdair McAndrew
Thanks all, for your answers and discussion to my query. For the record, I'm writing up answers to a long list of questions, some of which don't need a written answer (just asking the reader to observe something). A quick check has verified than \noitem does exactly what I want. Thanks again,