答案1
你可以尝试这个witharrows
包:
\documentclass{article}
\usepackage{witharrows}
\begin{document}
$\begin{WithArrows}
x^4 &= x \cdot x \cdot x \cdot x \Arrow[tikz=<-]{${} \cdot x$} \\
x^3 &= x \cdot x \cdot x
\end{WithArrows}$
\end{document}
为了改变箭头的曲率或箭头尖端,你可以使用 Ti钾Z 选项:
\documentclass{article}
\usepackage{witharrows}
\begin{document}
$\begin{WithArrows}
x^4 &= x \cdot x \cdot x \cdot x \Arrow[tikz={stealth-, in=100, out=80, looseness=1.5}]{${} \cdot x$} \\
x^3 &= x \cdot x \cdot x
\end{WithArrows}$
\end{document}