I want to have a enumerated list broken by comments as in

    1. First point
    2. Second

    further points include

    3.

    and yet more things to say are 

    4.
    5.

In LaTeX this is easliy accomplished by using something like

\newcounter{saveenum}
 ...
\begin{enumerate}
 ...
 \setcounter{saveenum}{\value{enumi}}
\end{enumerate}
<Commentary text>
\begin{enumerate}
 \setcounter{enumi}{\value{saveenum}}
 ...
\end{enumerate}

However, l2h doesn't handle this at all well. The second and
subsequent lists all start with 1 again. Is there a work round to
this?

Graham
_______________________________________________
latex2html mailing list
[EMAIL PROTECTED]
http://tug.org/mailman/listinfo/latex2html

Reply via email to