是否可以在 TikZ 中制作类似气球的形状?就我个人而言,我还没有找到比椭圆更接近的形状:
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\tikzstyle{balloon}=[ball color=red];
\shade[balloon] ellipse (2 and 1);
\end{tikzpicture}
\end{document}
答案1
没有 PSTricks。
\documentclass[tikz,border=12pt]{standalone}
\begin{document}
\begin{tikzpicture}
\tikzstyle{balloon}=[ball color=red];
\shade[balloon] ellipse (1.75 and 2);
\shade[balloon] (-.1,-2) -- (-.3,-2.2) -- (.3,-2.2) -- (.1,-2) -- cycle;
\draw (0,-2.2) -- (0,-5);
\end{tikzpicture}
\end{document}