How to Create a List Without Bullets in LaTeX

In LaTeX, you can create a list without bullets by using the itemize environment and redefining the \labelitemi command to be empty.

The following examples show how to create a list without bullets in LaTeX.

How to Create a List Without Bullets

We can use the itemize environment and redefine the \labelitemi command to create a list without bullets in LaTeX document.

Suppose we want to create a list without bullets.

We can use the following LaTeX code to do so:

\documentclass{article}
\begin{document}

This is an example of a list without bullets:
\begin{itemize}
    \renewcommand{\labelitemi}{}
    \item First item
    \item Second item
    \item Third item
\end{itemize}

\end{document}

Output: 👇️

This is an example of a list without bullets:
First item
Second item
Third item

In this example, we use the \renewcommand{\labelitemi}{} command to remove the bullet points from the itemize environment.

How to Create a Nested List Without Bullets

We can also create nested lists without bullets by using the same approach within nested itemize environments.

Suppose we want to create a nested list without bullets.

We can use the following LaTeX code to do so:

\documentclass{article}
\begin{document}

This is an example of a nested list without bullets:
\begin{itemize}
    \renewcommand{\labelitemi}{}
    \item First item
    \item Second item
    \begin{itemize}
        \renewcommand{\labelitemii}{}
        \item Subitem 1
        \item Subitem 2
    \end{itemize}
    \item Third item
\end{itemize}

\end{document}

Output: 👇️

This is an example of a nested list without bullets:
First item
Second item
    Subitem 1
    Subitem 2
Third item

In this example, we use the \renewcommand{\labelitemi}{} and \renewcommand{\labelitemii}{} commands to remove the bullet points from both the main and nested itemize environments.

Conclusion

We can use the itemize environment and redefine the \labelitemi command to remove bullet points.