I have some trouble trying to put a mindmap graph and a tikz-qtree graph together in the same document. With the example below, the mindmap is all scrunched up. But if you comment out the \usepackage{tikz-qtree} line and the first tikzpicture which contains the tikz-qtree code, then the mindmap looks just fine.
Is there a way to put them together? Thanks. Btw, not sure if this is relevant, I will also use this in with beamer.
\documentclass{article}
\usepackage{tikz}
\usepackage{tikz-qtree}
\usetikzlibrary{arrows,backgrounds,calc,fit,mindmap,positioning,trees,shapes}
\begin{document}
\begin{tikzpicture}
\Tree % space is REQUIRED after every node!!!
[.S
[.A
[.B [.C D ]
[.E false ] ]
]
]
\end{tikzpicture}
\begin{tikzpicture}{mindmap}
\path[mindmap,concept color=black,text=white]
node[concept] {Start}
[clockwise from=0]
child[concept color=green] {
node[concept] (A) {A}
[clockwise from=0]
child { node[concept] {C} }
}
child[concept color=blue] {
node[concept] (B) {B}
};
\begin{pgfonlayer}{background}
\draw [circle connection bar] (A) edge (B);
\end{pgfonlayer}
\end{tikzpicture}
\end{document}