Subject: | Tikz Tree bug |
Date: | Tue, 20 Aug 2013 01:30:25 -0700 (PDT) |
To: | "bug-LaTeX-TikZ [...] rt.cpan.org" <bug-LaTeX-TikZ [...] rt.cpan.org> |
From: | Rahul BOBBA <bobbarahul [...] yahoo.com> |
When building a tree the nodes overlap
\begin{tikzpicture}
\node {animal kingdom}
child {
node {birds}
child {
node {eagles}
}
child {
node {parrots}
}
}
child {node {fish}
}
child {node {reptiles}
}
child {
node {mammals}
child {node {dogs}
child { node {German Shephard}
}
child { node {Pomerian}
}
}
child {node {monkeys}
}
child {node {cows}
}
child {node {cats}
}
}
;
\end{tikzpicture}
Rahul