[Tex/LaTex] enumerate – continued numbering with different lists

#enumeratelistsnumbering

I have three separate lists of publications:

  • Journal articles
  • Conference papers
  • Published Abstracts

I want to number them continuously – from the first Journal article to the last abstract.

Best Answer

You can use enumitem package. Here is an example.

\documentclass{article}
\usepackage{enumitem}
\begin{document}
    \noindent Journal articles  
    \begin{enumerate}
        \item paper 1
        \item paper 2
    \end{enumerate}
    Conference papers
    \begin{enumerate}[resume]
        \item paper 1
        \item paper 2
    \end{enumerate}
    Published Abstracts
    \begin{enumerate}[resume]
        \item paper 1
    \end{enumerate}
\end{document}

enter image description here