方程式中单个项上的圆圈和箭头

方程式中单个项上的圆圈和箭头

我想用一个命令创建一个包含这个圆圈和箭头的方程。我想得到一个类似于这样的方程:

我到现在为止都这么写:

\documentclass{article}
\usepackage{amsmath}
\usepackage{tikz}
\makeatletter
\newcommand\mathcircled[1]{%
   \mathpalette\@mathcircled{#1}%
}
\newcommand\@mathcircled[2]{%
   \tikz[baseline=(math.base)] \node[draw,circle,inner sep=1pt] (math) {$\m@th#1#2$};%
}
\makeatother
\begin{document}
   \[\lim_{x\to\infty} \frac{\sin x}{x}= \mathcircled{\frac{\sin x}{x}}=1\]
\end{document}

答案1

\documentclass{article}
\usepackage{amsmath}
\usepackage{tikz}
\usetikzlibrary{arrows.meta}
\makeatletter
\newcommand\mathcircled[1]{%
   \mathpalette\@mathcircled{#1}%
}
\newcommand\@mathcircled[2]{%
\tikz[baseline=(math.base)] {\node[draw,circle,inner sep=1pt] (math) {$\m@th#1#2$}; \draw[-{Triangle[open]}] (math.north east) -- +(0.3,0.3)}%
}
\makeatother
\begin{document}
   \[\lim_{x\to\infty} \frac{\sin x}{x}= \mathcircled{\frac{\sin x}{x}}=1\]
\end{document}

带箭头的圆圈数学

编辑:

使用数字:

\tikz[baseline=(math.base)] {\node[draw,circle,inner sep=1pt] (math) {$\m@th#1#2$}; \draw[-{Triangle[open]}] (math.north east) -- +(0.3,0.3) node[above right]{1}}%

同样的数学运算,但箭头上方有一个数字

相关内容