答案1
如果您只想绘制其中一个,这可能有点小题大做,但如果您打算做几个这样的注释,并希望能够使用更多奇特的功能,这可能是一种合理的方法。
\documentclass{article}
\usepackage{amsmath}
\usepackage{tikz}
\usetikzlibrary{tikzmark}
\begin{document}
\[\lim_{x\to0}\tikzmarknode{ex}{\mathrm{e}^x}\left(2+4x\right)~=~2\]
\begin{tikzpicture}[overlay,remember picture]
\path[red] ([xshift=1pt,yshift=1pt]ex.north east) -- ++(45:{width("=")*1pt-1pt})
node[midway,sloped]{$=$} node[above right=-2pt]{$1$};
\end{tikzpicture}
\end{document}
可以说更明确的替代方案包括
\documentclass{article}
\usepackage{mathtools}
\usepackage{tikz}
\usetikzlibrary{tikzmark}
\begin{document}
\[\lim_{x\to0}\tikzmarknode{ex}{\mathrm{e}^x}\left(2+4x\right)~=~2\]
\begin{tikzpicture}[overlay,remember picture]
\draw[red,->] ([xshift=1pt,yshift=1pt]ex.north east) --
++(45:{width("$\scriptstyle x\to0$")*1pt})
node[midway,sloped,above]{$\scriptstyle x\to0$} node[above right=-1pt]{$1$};
\end{tikzpicture}
\end{document}
这说明了我所说的“更多奇特的选择”的意思。