On Sep 3, 2:14 pm, Pawel_Iks <
pawel.labed...@gmail.com> wrote:
> I want enumerate environment to start numbering items from for example
> 3 and not from 1. How to do it?
You may consider using the enumitem package, available online via CTAN
from
http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=enumitem
It allows for easy manipulation of such lists (enumerate, itemize and/
or description). Although I haven't tested this, I assume you'll be
interested in the following:
...
\begin{enumerate}[start=3]
\item...
...
\end{enumerate}
Werner