Robin_PHD/latex_examples/mind_map.tex
Robin Clark 56bd6c599d more work writing up dag
inhibit and conjuction of failure modes needs
to be tackled here and in the PLD diagram.

Refs needs to be put in the design of methodology too
2010-12-02 15:33:46 +00:00

28 lines
844 B
TeX

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{mindmap,trees}
\begin{document}
\pagestyle{empty}
\begin{tikzpicture}
\path[mindmap,concept color=black,text=white]
node[concept] {Safety Engineering}
[clockwise from=0]
child[concept color=green!50!black] {
node[concept] {practical}
[clockwise from=90]
child { node[concept] {Certification } }
child { node[concept] {Maintenance} }
child { node[concept] {Staff Training} }
}
child[concept color=blue] {
node[concept] {applied}
[clockwise from=-30]
child { node[concept] {Standards} }
child { node[concept] {Insurance Liability} }
}
child[concept color=red] { node[concept] {Accident Investigation} }
child[concept color=orange] { node[concept] {theoretical} };
\end{tikzpicture}\end{document}