https://github.com/notjoemartinez/mathjax-cheatsheet
Mathjax cheat sheet
https://github.com/notjoemartinez/mathjax-cheatsheet
Last synced: 22 days ago
JSON representation
Mathjax cheat sheet
- Host: GitHub
- URL: https://github.com/notjoemartinez/mathjax-cheatsheet
- Owner: NotJoeMartinez
- Created: 2024-09-03T21:58:31.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-03T23:19:21.000Z (almost 2 years ago)
- Last Synced: 2026-04-25T15:00:39.254Z (3 months ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Fractions
`\frac{numerator}{denominator}`
$$
\frac{3}{2}
$$
Fractions within fractions
`\frac{\frac{4}{3}}{2}`
$$
\frac{\frac{4}{3}}{2}
$$
### Division
`\div`
$$
4 \div 2
$$
### Less than or equal to
`\leq`
$$
a \leq{b}
$$
## Greater than or equal to
`\geq`
$$
a \geq{b}
$$
### Matrix
```
\begin{pmatrix}
1 & 2 & 3 \\
0 & 1 & 4 \\
0 & 0 & 1 \\
\end{pmatrix}
```
$$
\begin{pmatrix}
1 & 2 & 3 \\
0 & 1 & 4 \\
0 & 0 & 1 \\
\end{pmatrix}
$$
### Negation
`\neg`
$$
\neg
$$
### Conjunction
`\land`
$$
\land
$$
### Disjunction
`\lor`
$$
\lor
$$
### Implication
`\rightarrow`
$$
\rightarrow
$$
`\to`
$$
\to
$$
### Bidirectional Implication
`\leftrightarrow`
$$
\leftrightarrow
$$
### Equivalence
`\equiv`
$$
\equiv
$$