do you have an idea how could I reproduce the brancing-diagram in this picture? I suppose that it was made with tikz or pst-tree but I don't know how, especially how to get those coloured areas.
The tree in the picture is taken from this presentation
MWE (produces almost the same tree but not the coloured areas):
\documentclass[11pt]{standalone}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{tikz}
\usetikzlibrary{matrix,arrows,decorations.pathmorphing,trees}
\begin{document}
\vspace{5cm}
\tikzstyle{level 1}=[level distance=3cm, sibling distance=3cm,very thick]
\tikzstyle{level 2}=[level distance=3cm, sibling distance=2cm]
\tikzstyle{level 3}=[level distance=3cm, sibling distance=1.5cm]
\tikzstyle{empty node} = [circle,draw,minimum width=1pt,fill=white,inner sep=2pt]
\tikzstyle{end} = [circle,draw,inner sep=1.2,fill=black, minimum width=2pt]
\begin{tikzpicture}[grow=right, sloped]
\node[end] {}
child[loosely dotted] {
node[end] {}
child{
node[end]{}
child{
node[end] {}
}
child{
node[end] {}
}
}
child {
node[end] {}
child{
node[end] {}
}
child{
node[end] {}
}
}
}
child[loosely dotted]{
node[end]{}
child{
node[end] {}
}
child{
node[end] {}
}
}
child {
node[empty node,label=above:{\Large{\textit{i}$_c$}}] {}
child[loosely dashed] {
node[end] {}
child{
node[end]{}
child{
node[end]{}
}
child{
node[end]{}
}
}
}
child[dashed]{
node[end] {}
child{
node[end]{}
child{
node[end]{}
}
child{
node[end]{}
}
}
}
}
;
\end{tikzpicture}
\end{document}
Thank you very much in advance!!!


forest. Drawing the coloured regions can be done with the TikZfitlibrary. Getting the exact shapes might involve some work. Perhaps you should try that and post your code here when you get stuck. – Alan Munn Jun 06 '18 at 18:24