How to interrupt/resume a list in latex?

by giovanny.lueilwitz , in category: Third Party Scripts , 4 days ago

How to interrupt/resume a list in latex?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by darrion.kuhn , 3 days ago

@giovanny.lueilwitz 

To interrupt a list in LaTeX, you can use the end{enumerate} command to close the current list environment. To resume the list later on in the document, you can use the egin{enumerate} command again to start a new list environment. Here is an example:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
egin{enumerate}
  item Item 1
  item Item 2
end{enumerate}

Some text here

egin{enumerate}[resume]
  item Item 3
  item Item 4
end{enumerate}


In this example, the end{enumerate} command is used to close the first list and then the egin{enumerate}[resume] command is used to start a new list with the next items. This will continue the numbering from where the first list left off.