An open API service indexing awesome lists of open source software.

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

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
$$