2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-19 11:38:05 +02:00
LaTeX-examples/tikz/topology-sphere-with-hole/topology-sphere-with-hole.tex
2013-11-17 21:12:22 +01:00

20 lines
585 B
TeX

\documentclass[varwidth=true, border=2pt]{standalone}
\usepackage{tikz}
\usepackage{tqft}
\begin{document}
\begin{tikzpicture}[tqft/flow=east]
\draw (0,0) circle (2cm);
\draw (0,0) ellipse (2cm and 0.35cm);
\draw[white,fill=white] (0,0.1) ellipse (1.95cm and 0.35cm);
\draw[dashed] (0,0) ellipse (2cm and 0.35cm);
\begin{scope}[rotate=45]
\draw (0.5,1.2) ellipse (0.5cm and 0.4cm);
\end{scope}
\node at (2.38,0) {$\stackrel{\sim}{=}$};
\draw (3.8,0) circle (1cm);
\end{tikzpicture}
\end{document}