This is the code I have:
\begin{tikzpicture}
\tikzset{edge from parent/.style=
{draw,
edge from parent path={(\tikzparentnode.south)
-- +(0,-5pt)
-| (\tikzchildnode)}}}
\Tree [.Fibres
[.Natural
[.Animal Silk
]
[.Vegetable
[.Cotton\\Linen\\Hemp\\Ramie\\Jute ]
]
[.Mineral Asbestos ]
]
[.Man-made
[.{Natural Polymers}
[.XYZ ]
[.XYZ ]
[.XYZ ]
]
[.{Synthetic Polymers}
[.XYZ ]
[.XYZ ]
]
]
]
\end{tikzpicture}
which gives me a good tree. But I want to have "Cotton Linen Hemp Ramie Jute" displayed one below another instead of right next to each other. Can someone help?

