Skip to content

Instantly share code, notes, and snippets.

@niklaskeerl
Last active November 18, 2020 16:15
Show Gist options
  • Save niklaskeerl/62da19f2f171f0a630a7892a57ed3ded to your computer and use it in GitHub Desktop.
Save niklaskeerl/62da19f2f171f0a630a7892a57ed3ded to your computer and use it in GitHub Desktop.
Stakeholder diagram latex template
\documentclass[border=10pt,tikz]{standalone}
\usepackage{pgf}
\usetikzlibrary{arrows,automata,shapes,positioning}
\usepackage[latin1]{inputenc}
\begin{document}
\begin{tikzpicture}[->,>=stealth',shorten >=1pt,auto,node distance=3.5cm,
semithick]
\tikzstyle{every state}=[ellipse,fill=white,text=black]
\node[state] (Pa) {parents};
\node[state] (Pu) [above right = of Pa] {pupils};
\node[state] (T) [above left = of Pa] {teacher};
\node[state] (F) [above = of Pu] {classmates};
\node[state] (C) [above = of T] {colleagues};
\path[every node/.style={align=center}]
(T) edge [bend left = 20] node {animate to cooperate and feedback} (Pu)
(T) edge [bend left = 20] node {talk about lessons} (C)
(T) edge [<->, left, bend right = 20] node {talk about pupils} (Pa)
(Pu) edge [right, bend right = 20] node {talk about teachers} (F)
(Pu) edge [bend left = 20] node {talk about teachers} (Pa)
(Pu) edge [bend left = 20] node {participate and suggest ideas} (T);
\end{tikzpicture}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment