Guest User

Adjunction space diagram

a guest
Sep 6th, 2016
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.58 KB | None | 0 0
  1. \documentclass[a4paper,11pt]{scrartcl}
  2. \usepackage{tikz}
  3. \usetikzlibrary{matrix,arrows,decorations.pathmorphing}
  4.  
  5. \begin{document}
  6.  
  7. \begin{center}
  8. \begin{tikzpicture}
  9. \node (1) at (0,0) {$A$};
  10. \node (2) at (4,0) {$Y$};
  11. \node (3) at (0,-2) {$X$};
  12. \node (4) at (4,-2) {$X \cup Y$};
  13. \node (5) at (6,-3) {$X \cup_f Y$};
  14. \path[->]
  15. (1) edge node[above]{$f$} (2)
  16. (3) edge [bend right] node[above]{$\bar f$} (5)
  17. (4) edge node[below]{$\pi$} (5);
  18. \path[right hook->]
  19. (1) edge (3)
  20. (3) edge (4)
  21. (2) edge (4)
  22. (2) edge [bend left] (5);
  23. \end{tikzpicture}
  24. \end{center}
  25.  
  26. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment