I'm new to LaTeX and currently working on my first beamer presentation.I tried to add already proven formulas in a proof as a comment using TikZ since I saw something similar here. My current status is this:
\documentclass[beamer,compress,t]{beamer}
\usepackage{amsmath}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\newcommand{\norm}[1]{\left\lVert#1\right\rVert}
\usetikzlibrary{shapes.callouts}
\begin{document}
\begin{frame}
\frametitle{Title}
\[\norm{a-b} \tikz[remember picture] \node (a) {$\leq$}; \norm{a} + \norm{b} \]
\begin{tikzpicture}[remember picture,overlay]
\path<2> (a.south) ++(0,1) node[anchor=north,rectangle callout,fill=blue!50,opacity=1, callout absolute pointer={(a.mid)}] {From $\Delta$};
\end{tikzpicture}
\pause \pause
\[\norm{\lambda x} = \lambda \norm{x} \]
\end{frame}
\end{document}
which results in this:
This works reasonably well, but I'd like the \leq sign not to move up and the box to be under the sign. However, it seems like this isn't an anchor option. I tried looking this up, but the TikZ help seems a little intimidating right now.


