mirror of
https://github.com/Brandon-Rozek/website.git
synced 2025-10-09 14:31:13 +00:00
New posts
This commit is contained in:
parent
2eb3effb87
commit
c743dd70a2
4 changed files with 367 additions and 0 deletions
24
content/blog/latexlistlabels.md
Normal file
24
content/blog/latexlistlabels.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
---
|
||||
title: "LaTex List Labels"
|
||||
date: 2022-01-16T23:17:51-05:00
|
||||
draft: false
|
||||
tags: ["LaTex"]
|
||||
math: false
|
||||
---
|
||||
|
||||
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}
|
||||
```
|
||||
|
||||

|
Loading…
Add table
Add a link
Reference in a new issue