我正在准备一些讲座幻灯片,我想要一个指向方程式中变量的标注箭头,如下所示:
我尝试将 \overset 与 \Rsh 结合使用,但箭头与文本不对齐,指向错误的方向,看起来很乱。我正在寻找指针(请原谅我的双关语!)来实现这一点。提前致谢!
我尝试做的是这样的:
\documentclass{article}
\usepackage{amsmath}
\[
H=\dfrac{p^{2}}{2m}+ \overset{\Rsh\text{Potential Energy}}{V(x) \qquad \qquad \qquad }
\]
\end{document}
看起来很糟糕。也许我需要使用 tikzpicture 包来绘制标注箭头。
答案1
如果它真的是用于讲座幻灯片,你可以做类似的事情
\documentclass{beamer}
\usepackage{tikz}
\usetikzlibrary{shapes.callouts,tikzmark}
\newcounter{Callout}
\newcommand<>{\Callout}[3][]{\stepcounter{Callout}%
\tikzmarknode{tn-\number\value{Callout}}{#2}%
\begin{tikzpicture}[overlay,remember picture]
\only#4{\path (tn-\number\value{Callout}.north)
++ (0.5,0.5) node[#1,above,draw,align=center,rectangle callout,
callout absolute pointer={(tn-\number\value{Callout}.north)}]{#3};}
\end{tikzpicture}}
\begin{document}
\begin{frame}[t]
\frametitle{Hamilton function}
The Hamilton function reads
\[H=\frac{p^2}{2m}+\Callout<.(1)>{V(x)}{potential energy}
\]
\pause
bla bla
\end{frame}
\end{document}