topology-kartenwechsel.tex 1.6 KB

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