I'd like to add a footnote to the graph title. After adding the footnote, it disappears! Here is my MWE:
\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\pagestyle{empty}
\usetikzlibrary{patterns}
\begin{document}
\begin{tikzpicture}
\begin{axis}
[
axis lines*=left,
title=Histogram of S\&P 500 CEOs Past Experience \footnote{Hey, where are you?},
xbar,
width=8cm,
height=5cm,
xlabel={},
symbolic y coords={Sales, Marketing, Finance, Operations},
ytick=data,
xmin=0,
xmax=0.5,
nodes near coords,
nodes near coords align={horizontal}
]
\addplot
[draw=blue,pattern=horizontal lines light blue]
coordinates
{(0.17,Sales) (0.24,Marketing) (0.31,Finance) (0.42,Operations)};
\end{axis}
\end{tikzpicture}
\end{document}
Any help?

\footnotemarkand\footnotetext– JLDiaz Dec 17 '12 at 22:20