Underleaf Logo
Underleaf
PricingBlogInstall for OverleafStart for free

Learn LaTeX

Text Formatting

  • Bold Text in LaTeX
  • Italics in LaTeX
  • Subscript and Superscript
  • Greek Letters and Symbols

Lists and Enumerations in LaTeX

Lists are essential for organizing information in a clear and structured way. This guide covers all types of lists in LaTeX, from simple bullet points to complex nested structures.

Unordered Lists (itemize)

Create bullet-point lists using the itemize environment:

  • First item
  • Second item
  • Third item

LaTeX code:

\begin{itemize} \item First item \item Second item \item Third item \end{itemize}

Ordered Lists (enumerate)

Create numbered lists using the enumerate environment:

  1. First item
  2. Second item
  3. Third item

LaTeX code:

\begin{enumerate} \item First item \item Second item \item Third item \end{enumerate}

Description Lists

Create lists with custom labels using the description environment:

Term 1:Description of first term
Term 2:Description of second term
Term 3:Description of third term

LaTeX code:

\begin{description} \item[Term 1] Description of term 1 \item[Term 2] Description of term 2 \item[Term 3] Description of term 3 \end{description}

Nested Lists

Create hierarchical lists by nesting different list environments:

  1. First level
    • Nested item 1
    • Nested item 2
      1. Deep nested item
      2. Another deep item
  2. Back to first level

LaTeX code:

\begin{itemize} \item First level \begin{itemize} \item Second level \begin{itemize} \item Third level \end{itemize} \end{itemize} \end{itemize}

Customizing List Appearance

Modify the appearance of lists using the enumitem package:

LaTeX code:

\usepackage{enumitem} \begin{itemize}[label=$\bullet$] \item Custom bullet point \end{itemize}

Best Practices

  • Use the enumitem package for advanced list customization
  • Keep nested lists to a maximum of three levels for readability
  • Maintain consistent spacing and indentation across lists
  • Use description lists for term definitions or key-value pairs
  • Consider using custom labels when default markers don't suit your needs

Upload an image of your list and we'll convert it to LaTeX code using AI technology.

Underleaf Logo
Underleaf

Empowering students and researchers with AI-powered tools for academic writing.

Company

PricingGuideBlogLearn

© 2025 Underleaf. All rights reserved.