latex

How To Create a Numbered List in LaTeX

Listing critical points in a LaTeX document is easy, since it does not require any specific package in the source code. There are different list formats, such as numbered lists and bullet lists. However, numbered lists are the most commonly used listing formatted.

That’s why LaTeX also provides simple ways to create numbered lists in a document. So, if you also want to learn how to create a numbered list in LaTeX, please read this tutorial thoroughly.

How To Create a Numbered List in LaTeX

In LaTeX, you must use the enumerate environment and \item code before every point. Let’s start with a simple example:

\documentclass{article}
\begin{document}
Sides of a Coin:
\begin{enumerate}
\item Heads (obverse)
\item Tails (reverse)
\end{enumerate}
\end{document}

Output

Similarly, you can create a long numbered list using the \item code. For example, we can list down the eight union territories of India through the following example:

\documentclass{article}
\begin{document}
The Union Territories of India:
\begin{enumerate}
\item Andaman and Nicobar Islands
\item Dadra and Nagar Haveli and Daman and Diu
\item Chandigarh
\item Lakshadweep
\item Puducherry
\item Delhi
\item Ladakh
\item Jammu and Kashmir
\end{enumerate}
\end{document}

Output

Conclusion

In this article, we discussed how you could create a numbered list in LaTeX. The numbered list can sort the key point and provides your document with a clean format. For a numbered list in LaTeX, you only need to add \item code and the {enumerate} environment. We used different examples so that you can get brief details about it. Moreover, there are some other types of lists in LaTeX that are useful in various documents. So please visit our official website to know more about the listed formats in LaTeX.

About the author

Prateek Jangid

A passionate Linux user for personal and professional reasons, always exploring what is new in the world of Linux and sharing with my readers.