On Mon, Jun 08 2015, Delia Fara <df...@princeton.edu> wrote:

> I've just written it as a LaTeX macro using "\newenvironment", put it
> in a .tex file and enable it using "\input{}". The point of the list
> is to have the labels be numbers in parentheses that don't start over
> with "(1)" with each \begin{}... \end{} pair.

You know, the enumitem package offers this functionality. You can simply
say:

,----
| \begin{enumerate}
| \item ...
| \item ...
| \end{enumerate}
| 
| Some text.
| 
| \begin{enumerate}[resume] % option 'resume' will continue the counter
| \item ...
| \item ...
| \end{enumerate}
`----

and have the numbering of the second list start where the first list
left off.

-- 
Joost Kremers
Life has its moments

_______________________________________________
auctex mailing list
auctex@gnu.org
https://lists.gnu.org/mailman/listinfo/auctex

Reply via email to