website/content/blog/latexlistlabels.md

27 lines
602 B
Markdown
Raw Normal View History

2022-01-17 10:37:24 -05:00
---
2023-02-18 13:12:02 -05:00
date: 2022-01-16 23:17:51-05:00
2022-01-17 10:37:24 -05:00
draft: false
math: false
2023-01-05 14:04:45 -05:00
medium_enabled: true
2023-02-18 13:12:02 -05:00
medium_post_id: b978cbe10da3
tags:
- LaTex
title: LaTex List Labels
2022-01-17 10:37:24 -05:00
---
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.
```latex
\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}
```
2023-02-18 13:12:02 -05:00
![](/files/images/blog/202201162357.svg)