Advertisement
Guest User

Untitled

a guest
Jul 24th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. documentclass[12pt]{article}
  2. usepackage{tikz}
  3. usetikzlibrary{calc,shapes}
  4. usepackage{mathrsfs}
  5. begin{document}
  6. begin{center}
  7. begin{tikzpicture}
  8. coordinate
  9. (a0) at (0,0);
  10. coordinate
  11. (a1) at (5,5);
  12. coordinate[label=left:$g$] (a2) at (2.5,3.5);
  13. fill (a2) circle (2pt);
  14. coordinate[label=above:$X$] (a3) at (2.5,5);
  15. coordinate[label=left:$f$] (a4) at (2.5,2.25);
  16. fill (a4) circle (2pt);
  17. coordinate[label=above:$varepsilon$] (a5) at (3.5,1.5);
  18. fill (a5) circle (2pt);
  19. coordinate[label=below:$Y$] (a6) at (1.5,0);
  20. coordinate
  21. (a8) at (4.35,2.5);
  22. coordinate[label=above:$L$] (a9) at (4.5,5);
  23. draw (a0) rectangle (a1);
  24. draw plot [smooth] coordinates {(a4) (a5) (a8) (a9)};
  25. draw (a3) -- (a2) -- (a4) -- (a6);
  26. coordinate[label=$mathbf{1}$] (1) at (1,3);
  27. coordinate[label=$mathscr{D}$] (D) at (3.4,3.4);
  28. coordinate[label=$mathscr{C}$] (C) at (3.78,.5);
  29. end{tikzpicture}
  30. $qquad$and$qquad$
  31. begin{tikzpicture}
  32. draw (0,0) rectangle (5,3);
  33. draw (0,3.5) rectangle (5,5);
  34. draw (2.5, 5) -- (2.5, 3.5);
  35. draw (4, 5) -- (4, 3.5);
  36. coordinate[label=above:$X$] (X) at (2.5, 5);
  37. coordinate[label=above:$L$] (X) at (4, 5);
  38. draw (2.5, 3) -- (2.5, 1.8) -- (1,0);
  39. draw plot [smooth] coordinates {(2.5, 1.8) (3.4, 1) (4, 1.8) (4, 3)};
  40. coordinate[label=below:$varepsilon$] (epsilon) at (3.4, 1);
  41. fill (epsilon) circle (2pt);
  42. coordinate[label=left:$g$] (g) at (2.5, 4);
  43. fill (g) circle (2pt);
  44. coordinate[label=left:$f$] (f) at (2.5, 1.8);
  45. fill (f) circle (2pt);
  46. end{tikzpicture}
  47. end{center}
  48. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement