답변1
이 솔루션은 tikz를 사용하여 거품을 그립니다. 버블은 중첩되지 않고 정렬에 포함됩니다.
이 작업을 많이 할 계획이라면 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}