In slide 2, I want to put a "text" (not "node") "Hello" (as mentioned in the code) to the left of the node "O.D.E soln". Not able to do that
\documentclass{beamer}
\usepackage[latin1]{inputenc}
\usepackage{times}
\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage{verbatim}
\usetikzlibrary{arrows,shapes}
\usetheme{AnnArbor}
\begin{document}
\begin{frame}
\frametitle{Intuition: Continued...}
\tikzstyle{format} = [draw, thin, fill=blue!20]
\begin{itemize}
\item<1-> Recall the proof of tracking lemma
\begin{tikzpicture}[auto,>=latex', thick]
\path[use as bounding box] (-5,0.5) rectangle (10,-2);
\only<1>{
\path[->]<1-> node[format] (link) {Algorithm};
}
\only<2->{
% Want to put "Hello" to the left of the node "O.D.E soln"
\path[->]<2-> node[format, below of=link] (incl) {O.D.E soln.:};
}
\end{tikzpicture}
\item<3-> Solution
\end{itemize}
\end{frame}
\end{document}
\node [left=of incl] {Hello};? (Requires\usetikzlibrary{positioning}, see Difference between "right of=" and "right=of" in PGF/TikZ) – Torbjørn T. May 25 '15 at 10:28