3

are there any simple: almost a single liner latex commands to make enumerate count in a weird order for instance that of a homework assignment?

Ex. 1, 5, 6, 9, 10, 13, 16

MattAllegro
  • 6,455
  • 5
  • 45
  • 52
GlassGhost
  • 16,906
  • 5
  • 32
  • 45
  • 2
    You could always use `\setcounter`. Anyway, this question belongs on http://tex.stackexchange.com/. – You Sep 20 '10 at 15:54

1 Answers1

4

Yes, you can do it easily with:

\begin{enumerate}
  \item[1] text text...
  \item[5] text text...
  \item[6] text text...
  \item[9] text text...
\end{enumerate}
Ortomala Lokni
  • 56,620
  • 24
  • 188
  • 240