mdp.tex 594 B

12345678910111213141516
  1. \documentclass[varwidth=true, border=2pt]{standalone}
  2. \usepackage{tikz}
  3. \usetikzlibrary{shapes,snakes,shapes.geometric,positioning}
  4. \begin{document}
  5. \begin{tikzpicture}[node distance=2cm]
  6. \node[ellipse,draw,minimum width=80pt,minimum height=20pt,fill=gray!5] (a) {Agent};
  7. \node[ellipse,draw,minimum width=80pt,minimum height=20pt,fill=gray!5,below of=a] (u) {Umwelt};
  8. % Arrows
  9. \draw[bend left,->,very thick] (a.east) to node [auto] {Aktion $a_k$} (u.east);
  10. \draw[bend left,->,very thick] (u.west) to node [auto] {Zustand $x_k$} (a.west);
  11. \end{tikzpicture}
  12. \end{document}