ex_terme.tex 729 B

123456789101112131415161718192021222324
  1. \begin{tikzpicture}[>=latex, node distance=1cm, on grid, auto]
  2. \tikzstyle{node}=[fill=white, text centered]
  3. % \begin{scope}
  4. \node [node] (f) {$f$};
  5. \path (f)+(-0.6,-1) node (x) [node] {$x$};
  6. \path (f)+(0.6,-1) node (g) [node] {$g$};
  7. \path (g)+(0.0,-1) node (a) [node] {$a$};
  8. %\path (g)+(0.7,-1) node (z) [node] {$z$};
  9. % \end{scope}
  10. % Draw arrows between elements
  11. \path [draw, -] (f.south)+(-0.2,0.0) -- node [above] {} (x);
  12. \path [draw, -] (f.south)+(0.2,0.0) -- node [above] {} (g);
  13. \path [draw, -] (g.south)+(0.0,0.0)-- node [above] {} (a);
  14. %\path [draw, -] (g.south)+(0.2,0.0)-- node [above] {} (z);
  15. \end{tikzpicture}
  16. %\caption{}
  17. %
  18. %f(x,g(y,z))
  19. %
  20. % f
  21. % / \
  22. %x g
  23. % / \
  24. % y z