I am drawing up a document that has numbered paragraphs. 1-36 are numbered normally and I have no problems. However, on paragraph 37, I need something like:
35 Normal paragraph.
36 Normal paragraph.
37-46 The following paragraphs correspond to text text text text, text text.
47 Normal paragraph.
I'm numbering my paragraphs using:
\newcounter{xpar}
\setcounter{xpar}{1}
\newcommand{\xp}{\arabic{xpar}\stepcounter{xpar}.\hspace{.5in}}
Can anyone help me figure out how to number the paragraph with a 37-46, and then continue on with 47?
\setcounter{xpar}, you should use\setcounter{xpar}{1}(or another value) or\stepcounter{xpar}, and instead of\newcommand{xp}{...}you should use\newcommand{\xp}{...}. – Gonzalo Medina Aug 4 '11 at 21:44