DEV Community

Brandon Rozek
Brandon Rozek

Posted on • Originally published at brandonrozek.com on

LaTex List Labels

A quick tip that I recently learned is that the symbols in a LaTex list item is changeable. In fact, the following technique works for both the enumerate and itemize environments.

\begin{itemize}
    \item[$\square$] Item 1
    \item[$\triangle$] Item 2
\end{itemize}

\begin{enumerate}
    \item[$\rho_1$] Property 1
    \item[$\rho_2$] Property 2
    \item[$\rho_3$] Property 3
\end{enumerate}

Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay