Respuesta1
Esta solución usa tikz para dibujar la burbuja. La burbuja se incluye en la alineación en lugar de superponerse.
Si planeas hacer esto con frecuencia, puedes intentar encontrar o crear una "forma" de tikz.
\documentclass{article}
\usepackage{amsmath}
\usepackage{mathstyle}% for \currentmathstyle
\usepackage{tikz}
\makeatletter
\newcommand{\mymathbox}[1]{%
\tikz[baseline=(temp.base)]{%
\node(temp){$\m@th\currentmathstyle#1$};
\draw (temp.south)+(2pt,0pt) -- +(0pt,-1ex) -- +(-2pt,0pt)% all offsets from (temp.south)
[rounded corners] -- (temp.south west) -- (temp.north west) -- (temp.north east) -- (temp.south east)
[sharp corners] -- cycle;
}%
}
\makeatother
\begin{document}
\begin{equation*}
\mymathbox{\frac{d}{dt}I(t)} = \frac{d}{dt}I(t)
\end{equation*}
\end{document}