mirror of
https://github.com/cupcakearmy/memoir.git
synced 2024-12-22 16:16:31 +00:00
17 lines
239 B
Markdown
17 lines
239 B
Markdown
|
# Lists
|
||
|
|
||
|
```latex
|
||
|
% Items
|
||
|
\begin{itemize}
|
||
|
\item a
|
||
|
\item b
|
||
|
\end{itemize}
|
||
|
|
||
|
% Numbered
|
||
|
\begin{enumerate}
|
||
|
\item One
|
||
|
\item Two
|
||
|
\end{enumerate}
|
||
|
```
|
||
|
|
||
|
[https://www.overleaf.com/learn/latex/Lists](https://www.overleaf.com/learn/latex/Lists)
|