Tento colocar uma árvore ao lado de uma árvore. Então descubro que a segunda árvore está inclinada de forma estranha. Mesmo se eu mudar o nó para um nó de matriz, o problema ainda persistirá.
\documentclass[tikz]{standalone}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}
[level distance = 10mm]
\node [label=left:{$T_1$}] (T1)
{
\begin{tikzpicture}
[every node/.style={draw, circle, inner sep=1pt, minimum size = 1mm}]
\node {}
child {node {} child {node {}}}
child {node {} child {node {}}}
child {node {} child {node {}}};
\end{tikzpicture}
};
\node [right = of T1, label=left:{$T_2$}] (T2)
{
\begin{tikzpicture}
[every node/.style={draw, circle, inner sep=1pt, minimum size = 1mm}]
\node {}
child {node {} child {node {}}}
child {node {} child {node {}}}
child {node {} child {node {}}};
\end{tikzpicture}
};
\end{tikzpicture}
\end{document}
Responder1
Nunca aninhe (diretamente) o tikzpicture no nó de outro tikzpicture. Se você gosta de ter dois diagramas de árvore como uma imagem, veja se a seguinte solução funciona para você:
\documentclass[tikz, border=3mm]{standalone}
\usetikzlibrary{positioning}
\tikzset{
every node/.style={draw, circle, inner sep=1pt, minimum size = 1mm},
label distance = 3mm,
node distance = 33mm,
sibling distance=11mm,
level distance=9mm
}
\begin{document}
\begin{tikzpicture}
\node (T1) {}
child {node[label=left:$T_1$] {} child {node {}}}
child {node {} child {node {}}}
child {node (T1R) {} child {node {}}};
\node [right=of T1 -| T1R]{}
child {node[label=left:$T_2$] {} child {node {}}}
child {node {} child {node {}}}
child {node {} child {node {}}};
\end{tikzpicture}
\end{document}