答案1
这是一个起点。您应该能够通过阅读以下内容轻松调整这一点TikZ 手册。
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\foreach \sgn in {-,+}
\draw plot[domain=0:10] ({\sgn 1/20*(3+\x*\x)},\x);
\foreach \h in {0,5,10}
\draw (0,\h) ellipse[x radius=1/20*(3+\h*\h),y radius=(\h+.5)/20];
\draw (0,0) -- node[right] {$h$} (0,5);
\draw (0,5) -- node[above] {$r$} ({-1/20*(3+5*5)},5);
\end{tikzpicture}
\end{document}