topology-kartenwechsel.tex 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. \begin{tikzpicture}[tqft/flow=east]
  2. \draw (0,0) ellipse (2cm and 1cm);
  3. \def\ringa{(-0.3,0) circle (0.5cm)}
  4. \def\ringb{(+0.3,0) circle (0.5cm)}
  5. \begin{scope}[even odd rule]
  6. \clip \ringa;
  7. \fill[pattern color=red,pattern=north east lines] \ringb;
  8. \end{scope}
  9. \begin{scope}[even odd rule,shift={(-0.7,-2)}]
  10. \clip \ringa;
  11. \fill[draw=red,pattern color=red,pattern=north east lines] \ringb;
  12. \end{scope}
  13. \begin{scope}[even odd rule,shift={(+0.7,-2)}]
  14. \clip \ringb;
  15. \fill[draw=red,pattern color=red,pattern=north east lines] \ringa;
  16. \end{scope}
  17. \draw \ringa;
  18. \draw \ringb;
  19. \node at (-1,0.3) {$U_i$};
  20. \node at (+1,0.3) {$U_j$};
  21. \node at (-1.9,-2) {$V_i$};
  22. \node at (+1.9,-2) {$V_j$};
  23. \path[->] (-0.35,0) edge [bend angle=10,bend right] node[label={[label distance=0.1cm]210:$\varphi_i$}] {} (-1,-1.5);
  24. \path[->] (+0.35,0) edge [bend angle=10,bend left] node[label={[label distance=0.1cm]-30:$\varphi_j$}] {} (+1,-1.5);
  25. \draw (-1,-2) circle (0.5cm);
  26. \draw (+1,-2) circle (0.5cm);
  27. \draw[->, red, thick] (-0.3,-2) -- (0.3,-2);
  28. \end{tikzpicture}