Since I am from school of mathematics, the most useful package for me is the amsmath, which helps me write beautiful math formulas.
We can use $...$
to write inline equations. For example
This is first inline equation $\alpha_1 +\beta_1 = \gamma_1$, \(\alpha_2+\beta_2=\gamma_2\)
Result
\[...\]
un-numbered\begin{equation*}...\end{equation*}
un-numbered\begin{equation}...\end{equation}
numbered automatically\begin{math}...\end{math}
\begin{displaymath}...\end{displaymath}
$$...$$
% alternative 1
\[\sqrt{\mu+\delta}=\kappa\]
% alternative 2
\begin{equation*}
\sqrt{\mu+\delta}=\kappa
\end{equation*}
% alternative 3
\begin{equation}
\sqrt{\mu+\delta}=\kappa
\end{equation}
Alternatives
\begin{split}...\end{split}
which is a subordinate environment that can be used as the contents of equation
environment or the contents of one line in a multiple equation structure such as align
or gather
.\begin{multline}...\end{multline}
not-aligned\begin{gather}...\end{gather}
not-aligned\begin{align}...\end{align}
aligned\begin{eqnarray*}...\end{eqnarray*}
un-numbered \begin{eqnarray}...\end{eqnarray}
numbered% split
\begin{equation}
\begin{split}
\xi+\zeta&=\theta\\
\mu+\phi&=\tau
\end{split}
\end{equation}
% gather
\begin{gather}
a+b+c+d+e+f+g+h+j+\\
k+l+m+n
\end{gather}
% multline
\begin{multline}
a+b+c+d+e+f+g+h+j+\\
k+l+m+n
\end{multline}
% align
\begin{align}
a+b&=c\\
d+e&=f
\end{align}
-
and ^
are not for lower and upper subsripts\sum
for sum\int
for integral\sin \cos
for sin,cos\sqrt
for square root\cdot
for one dot in the center of text\cdots
for three dots in the center of text\ldots
for three dots in the bottom of text\{\}
for {}\|
for |\text{}
for writing text in equation\intertext{}
for writing text between multilines