Answers for "multiple math equation in latex"

0

multiple math equation in latex

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\begin{equation}
  \label{eq:t}
  \begin{aligned}
    f(x) &= x^2\\        
    g(x) &= \exp(x)
  \end{aligned}
\end{equation}

\begin{equation}
  \label{eq:u}
  \begin{gathered}
    f(x) = x^2\\        
    g(x) = \exp(x)
  \end{gathered}
\end{equation}

\end{document}
Posted by: Guest on March-31-2021

Browse Popular Code Answers by Language