m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/latex.md
diff options
context:
space:
mode:
authorMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2020-05-31 14:18:27 +0200
committerMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2020-05-31 14:18:27 +0200
commit42693876bd09ecb1a3b3eabca4aa2630f78c4da0 (patch)
treee74da3a88ba179fe63e582c0d4c8483c20cd0c39 /latex.md
parent7500d752f77ecca5e41f43f48da2a036aa916e76 (diff)
Add latex tips
Diffstat (limited to 'latex.md')
-rw-r--r--latex.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/latex.md b/latex.md
new file mode 100644
index 0000000..216b5ad
--- /dev/null
+++ b/latex.md
@@ -0,0 +1,16 @@
+# LaTeX
+
+## Lists
+
+`itemize` for bullet lists, `enumerate` for numbered, `description` for
+descriptive.
+
+ \begin{itemize}
+ \item First item
+ \item Second item
+ \end{itemize}
+
+ \begin{description}
+ \item [Description 1] First item
+ \item [Description 2] Second item
+ \end{itemize}