Dekel Tsur wrote:
>
> On Tue, Jun 05, 2001 at 07:01:16PM +0200, Herbert Voss wrote:
> Also, note that this will make ALL enumerate lists in the document use the
> same counter, so if you want an enumerate to start from 1 again, put
> \setcounter{mySaveCounter}{0} in front of it (in latex mode).
On Tue, Jun 05, 2001 at 07:01:16PM +0200, Herbert Voss wrote:
>
> \newcounter{myCounter}
> \newcounter{mySaveCounter}
> \renewenvironment{enumerate}{%
> \begin{list}{\arabic{myCounter}.}{\usecounter{myCounter}%
> \setcounter{myCounter}{\value{mySaveCounter}}}
> \item[]
> }{%
> \setcount
Adolfo Pachón wrote:
>
> Section 1
>
> 1. item 1
> 2. item 2
> ...
> 10. item 10
>
> Section 2
>
> 11. item 11
> 12. item 12
> ...
> 20. item 20
try in latex preamble
\newcounter{myCounter}
\newcounter{mySaveCounter}
\renewenviron
Hi all!!
I want to do this:
* I have 20 items.
* 10 in "Section 1", and the other 10 in "Section 2".
* I want to obtain this:
Section 1
1. item 1
2. item 2
...
10. item 10
Section 2
11. item 11
12. item 12
...
20. item 20
How c