Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. documentclass{standalone}usepackage{mathtools,tikz}
  2. begin{document}begin{tikzpicture}[scale=0.8,auto]
  3. tikzset{EdgeStyle/.style={postaction=decorate},MyLabel/.style={auto=right,fill=none,outer sep=0.1ex}}
  4. node (n11) at (2,0) {$f''$};
  5. node (n21) at (1,2) {$f'$};
  6. node (n22) at (3,2) {$h'$};
  7. node (n31) at (0,4) {$f$};
  8. node (n32) at (2,4) {$g$};
  9. node (n33) at (4,4) {$h$};
  10. draw[line width=1pt,->,bend left=10] (n31) edge node[swap] {$*$} (n21);%topleft
  11. draw[line width=1pt,->,bend left=10] (n32) edge node[swap] {$*$} (n21);
  12. draw[line width=1pt,->,bend left=10] (n32) edge node {$*$} (n22);
  13. draw[line width=1pt,->,bend left=10] (n33) edge node {$*$} (n22);
  14. draw[line width=1pt,->,bend right=10] (n21) edge node[swap] {$*$} (n11);
  15. draw[line width=1pt,->,bend left=10] (n22) edge node {$*$} (n11);%bottomright
  16. end{tikzpicture}end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement