topology-kartenwechsel.tex 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. \documentclass[varwidth=true, border=2pt]{standalone}
  2. \usepackage{amsmath,amssymb}% math symbols / fonts
  3. \usepackage{tikz}
  4. \usetikzlibrary{patterns}
  5. \begin{document}
  6. \begin{tikzpicture}
  7. \draw (0,0) ellipse (2cm and 1cm);
  8. \begin{scope}[xshift=-2.2cm,yshift=-2.8cm]
  9. \draw[->] (0,0) -- (0,1.5);
  10. \draw[->] (0,0) -- (1.5,0);
  11. \node at (0.3,0.16) {$\mathbb{R}^n$};
  12. \end{scope}
  13. \begin{scope}[xshift=0.4cm,yshift=-2.8cm]
  14. \draw[->] (0,0) -- (0,1.5);
  15. \draw[->] (0,0) -- (1.5,0);
  16. \node at (0.3,0.16) {$\mathbb{R}^n$};
  17. \end{scope}
  18. \def\ringa{(-0.3,0) circle (0.5cm)}
  19. \def\ringb{(+0.3,0) circle (0.5cm)}
  20. \begin{scope}[even odd rule]
  21. \clip \ringa;
  22. \fill[pattern color=red,pattern=north east lines] \ringb;
  23. \end{scope}
  24. \begin{scope}[even odd rule,shift={(-0.7,-2)}]
  25. \clip \ringa;
  26. \fill[draw=red,pattern color=red,pattern=north east lines] \ringb;
  27. \end{scope}
  28. \begin{scope}[even odd rule,shift={(+0.7,-2)}]
  29. \clip \ringb;
  30. \fill[draw=red,pattern color=red,pattern=north east lines] \ringa;
  31. \end{scope}
  32. \draw \ringa;
  33. \draw \ringb;
  34. \node at (-1,0.3) {$U_i$};
  35. \node at (+1,0.3) {$U_j$};
  36. \node at (-1.9,-2) {$V_i$};
  37. \node at (+1.9,-2) {$V_j$};
  38. \node at (+2.0,0.7) {$X$};
  39. \path[->] (-0.35,0) edge [bend angle=10,bend right] node[label={[label distance=0.1cm]210:$\varphi_i$}] {} (-1,-1.5);
  40. \path[->] (+0.35,0) edge [bend angle=10,bend left] node[label={[label distance=0.1cm]-30:$\varphi_j$}] {} (+1,-1.5);
  41. \draw (-1,-2) circle (0.5cm);
  42. \draw (+1,-2) circle (0.5cm);
  43. \draw[->, red, thick] (-0.3,-2) -- (0.3,-2);
  44. \end{tikzpicture}
  45. \end{document}