General ⇒ Very Basic Question About Enumeration
Very Basic Question About Enumeration
{
Turing Machines never halt, as shown by the following:
(1) M takes itself as an argument
(2) M goes forever
However, if we add an oracle, then the machine will halt if the oracle gives the following information:
(3) You will halt
}
What I am looking for is a way to automatically enumerate (1), (2), (3) while being able to write prose in between. Can anyone help with this? Which environment do I use? Neither enumerate, nor equation, seem to do the job here.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Very Basic Question About Enumeration
http://www.ctan.org/tex-archive/help/Ca ... mitem.html
You can find its documentation here:
http://www.ctan.org/tex-archive/macros/ ... umitem.pdf
You'll want to find the information about "resume" and "resume*". It simply does not reset the counter on the next enumerate environment. See page 4 of the documentation:
Code: Select all
\usepackage{enumitem}
%...
\begin{enumerate}
\item First item.
\item Second item.
\end{enumerate}
Text.
\begin{enumerate}[resume]
\item Third item
\end{enumerate}