Antwort1
Diese Lösung verwendet Tikz zum Zeichnen der Blase. Die Blase wird in die Ausrichtung einbezogen, anstatt darüber gelegt zu werden.
Wenn Sie vorhaben, dies häufig zu tun, können Sie versuchen, eine Tikz-„Form“ zu finden oder zu erstellen.
\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}