2

How to write the equation shown in the imageadding notes under the term in a mathematical equation

Bhaiti
  • 21

1 Answers1

5

You could use \overbrace and \underbrace:

enter image description here

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\begin{equation}
    \overbrace{a}^{\text{output}} = \underbrace{b}_{\text{significant}} + \underbrace{c + d}_{\text{non significant}}
\end{equation}

\end{document}
MarcoG
  • 1,437