how to make a numbered list in latex code example

Example 1: number list latex

#LaTex: creating a number list

\begin{enumerate}
  \item The labels consists of sequential numbers.
  \item The numbers starts at 1 with every call to the enumerate environment.
\end{enumerate}

Example 2: latex numbered list

% For bullet points:

\begin{itemize}
  \item One entry in the list
  \item Another entry in the list
\end{itemize}


% For numbered list:

\begin{enumerate}
  \item One entry in the list
  \item Another entry in the list
\end{enumerate}

Tags:

Misc Example