-1

I want to get something like this but without the plane V (So only the torus vertically and the four critical points s,r,q and p ). I don't have any experience with drawing things with Latex. Any help would be appreciated. Torus with critical points

mino
  • 3

1 Answers1

1

As @Roland suggested, you could use the following solution, and simply add points to it.

\documentclass[tikz,border=7pt]{standalone}
\begin{document}
  \begin{tikzpicture}
  \useasboundingbox (-3,-1.5) rectangle (3,1.5);
  \draw (0,0) ellipse (3 and 1.5);
  \begin{scope}
    \clip (0,-1.8) ellipse (3 and 2.5);
    \draw (0,2.2) ellipse (3 and 2.5);
  \end{scope}
  \begin{scope}
    \clip (0,2.2) ellipse (3 and 2.5);
    \draw (0,-2.2) ellipse (3 and 2.5);
  \end{scope}
  \draw[text=violet] (3,0) node{\Huge{.}} node[above]{A};
  \draw[text=violet] (1.4,0) node{\Huge{.}} node[above]{B};
  \draw[text=violet] (-1.4,0) node{\Huge{.}} node[above]{C};
  \draw[text=violet] (-3,0) node{\Huge{.}} node[above]{D};
\end{tikzpicture}
\end{document}

enter image description here

Elad Den
  • 3,941