寻找执行以下操作的方法:
- 在集合 B 内绘制集合 A;
- 对不同的集合使用不同的颜色。
答案1
这个问题的简单代码。
\documentclass[tikz,border=12pt]{standalone}
\tikzset{every picture/.style={line width=0.5pt}}
\begin{document}
\begin{tikzpicture}[x=0.75pt,y=0.75pt,yscale=-1,xscale=1]
\draw [fill={orange},fill opacity=1 ] (220, 190) circle [x radius= 120, y radius= 70] ;
\draw [fill={green!50},fill opacity=1 ] (200, 190) circle [x radius= 56, y radius= 32] ;
\draw (120,135) node [align=left] {$A$};
\draw (255,167) node [align=left] {$B$};
\end{tikzpicture}
\end{document}