I am trying to draw a mind map and below is the latex code, I have not added formating yet. The problem is am getting error
! Extra }, or forgotten \endgroup.l.30 }
I have tried to follow up, the code and I cant see: Please any help.
Code: Select all
\documentclass[a4paper, 12pt]{article}
%
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usetikzlibrary{mindmap}
\pagestyle{empty}
\begin{document}
\begin{tikzpicture}
% create a concepts note.
\node{A}
child {node {B}
child{node {C}}
child{node {D}}
child{node {E}}
child{node {F}}
child{node {G}}
child{node{H}}
}
child {node {C}
child {node {D}}
child {node {E}}
child {node {F}}
child {node {G}}
child {node {H}}
}
child {node {D}
child {node {E}}
child {node {F}}
child {node {G}}
child {node {H}}
child {node {K}}
}
child {node {E}
child {node {F}}
child {node {G}}
child {node {H}}
child {node {K}}
child {node {N}}
};
\end{tikzpicture}
\end{document}
huu