Does tex support `\begin{align}`

alignmath-mode

The \tag syntax works well with jupyter notebook

\begin{align}
a
&= b+1 \\
&= c+2 \tag{3-2}
\end{align}

enter image description here

However, it causes error with overleaf

LaTeX Error: Environment align undefined.

enter image description here

Does it mean tex doesn't support \begin{align} or I'm not using it correctly?

Best Answer

The align environment is defined by the amsmath package that you have not loaded.

Related Question