Update to README.md and graphic files.
This commit is contained in:
60
EXAMPLES.md
60
EXAMPLES.md
@@ -5,91 +5,104 @@
|
||||
(a_1 + a_2)^2 = a_1^2 + 2a_1a_2 + a_2^2
|
||||
```
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## Quadratic Formula
|
||||
```LaTeX
|
||||
x = \frac{-b \pm \sqrt{b^2-4ac}}{2a}
|
||||
```
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## Standard Deviation
|
||||
```LaTeX
|
||||
\sigma = \sqrt{\frac{1}{N}\sum_{i=1}^N (x_i - \mu)^2}
|
||||
```
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## De Morgan's laws
|
||||
```LaTeX
|
||||
\neg(P\land Q) \iff (\neg P)\lor(\neg Q)
|
||||
```
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## Log Change of Base
|
||||
```LaTeX
|
||||
\log_b(x) = \frac{\log_a(x)}{\log_a(b)}
|
||||
```
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## Cosine addition
|
||||
```LaTeX
|
||||
\cos(\theta + \varphi) = \cos(\theta)\cos(\varphi) - \sin(\theta)\sin(\varphi)
|
||||
```
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## Limit e^k
|
||||
```LaTeX
|
||||
\lim_{x\to\infty}\left(1 + \frac{k}{x}\right)^x = e^k
|
||||
```
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## Calculus
|
||||
```LaTeX
|
||||
f(x) = \int\limits_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,\mathrm{d}\xi
|
||||
```
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## Stirling Numbers of the Second Kind
|
||||
```LaTeX
|
||||
{n \brace k} = \frac{1}{k!}\sum_{j=0}^k (-1)^{k-j}\binom{k}{j}(k-j)^n
|
||||
```
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## Gaussian Integral
|
||||
```LaTeX
|
||||
\int_{-\infty}^{\infty} \! e^{-x^2} dx = \sqrt{\pi}
|
||||
```
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## Arithmetic mean, geometric mean inequality
|
||||
```LaTeX
|
||||
\frac{1}{n}\sum_{i=1}^{n}x_i \geq \sqrt[n]{\prod_{i=1}^{n}x_i}
|
||||
```
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## Cauchy-Schwarz inequality
|
||||
```LaTeX
|
||||
\left(\sum_{k=1}^n a_k b_k \right)^2 \le \left(\sum_{k=1}^n a_k^2\right)\left(\sum_{k=1}^n b_k^2\right)
|
||||
```
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## Cauchy integral formula
|
||||
```LaTeX
|
||||
f^{(n)}(z_0) = \frac{n!}{2\pi i}\oint_\gamma\frac{f(z)}{(z-z_0)^{n+1}}dz
|
||||
```
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## Schroedinger's Equation
|
||||
```LaTeX
|
||||
@@ -97,7 +110,8 @@ i\hbar\frac{\partial}{\partial t}\mathbf\Psi(\mathbf{x},t) = -\frac{\hbar}{2m}\n
|
||||
+ V(\mathbf{x})\mathbf\Psi(\mathbf{x},t)
|
||||
```
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## Lorentz Equations
|
||||
Use the `gather` or `displaylines` environments to center multiple
|
||||
@@ -110,7 +124,8 @@ equations.
|
||||
\end{gather}
|
||||
```
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## Cross product
|
||||
```LaTeX
|
||||
@@ -121,7 +136,8 @@ equations.
|
||||
\end{vmatrix}
|
||||
```
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## Maxwell's Equations
|
||||
Use the `aligned`, `eqalign` or `split` environments to align
|
||||
@@ -135,7 +151,8 @@ multiple equations.
|
||||
\end{eqalign}
|
||||
```
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## Matrix multiplication
|
||||
Supported matrix environments: `matrix`, `pmatrix`, `bmatrix`, `Bmatrix`,
|
||||
@@ -153,7 +170,8 @@ c\alpha + d\gamma & c\beta + d \delta
|
||||
\end{pmatrix}
|
||||
```
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## Cases
|
||||
```LaTeX
|
||||
@@ -163,7 +181,8 @@ f(x) = \begin{cases}
|
||||
\end{cases}
|
||||
```
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## Splitting long equations
|
||||
```LaTeX
|
||||
@@ -173,4 +192,5 @@ f(x) = \begin{cases}
|
||||
\left( o_t - \hat{\mu}_m^{(s)} \right) ^T \cal C_m^{(s)-1} \right)
|
||||
```
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
Reference in New Issue
Block a user