I'm trying to reproduce a TikZ tree from a Till Tantau presentation (see pg.33 of this .pdf)
My code is as follows:
\documentclass{article}
\usepackage[latin1]{inputenc}
\usepackage{tikz}
\usetikzlibrary{trees}
\begin{document}
\begin{tikzpicture}[edge from parent fork down, edge from parent/.style={black,thick,draw}]
\node[inner node]{}
child { node {bacteria} }
child { node[inner node] {}
child { node {plants} }
child { node[inner node] {}
child { node[inner node] {}
child { node {fish} }
child { node[inner node] {}
child { node {mammals} }
child { node {birds} }
}
}
child { node[inner node] {}
child { node {dragonflies} }
child { node {beetles} }
}
}
};
\end{tikzpicture}
\end{document}
I get six errors of the type below for each of the six node[inner node] {} calls in the code above:
! Package pgfkeys Error: I do not know the key '/tikz/inner node' and I am goin
g to ignore it. Perhaps you misspelled it.
See the pgfkeys package documentation for explanation.
Type H <return> for immediate help.
...
l.11 \node[inner node]
{}
This error message was generated by an \errmessage
command, so I can't give any explicit help.
Pretend that you're Hercule Poirot: Examine all clues,
and deduce the truth by order and method.
I couldn't find anyting pertinent on this type of usage in the PGF manual. Any help is welcome!

inner nodeis the name of a node with a matrix but it's not a style with PGF 2.10 CVS. – Alain Matthes Sep 15 '11 at 18:40