I am trying to make a figure and I need two circles with colors and numbers inside.
I am trying the following code
Code: Select all
\begin{tikzpicture}
\draw (0,0) circle (2.5cm);
\draw[fill=blue!30] (3,0) circle (2cm);
\draw [clip](0,0) circle (2.5cm);
\fill[yellow] (0,0) circle (2.5cm);
\fill[yellow!50!blue] (3,0) circle (2cm);
\node at (2.,0) {$\color{red}\bm{0}$};
\node at (2.,0.6) {$\mathit{\bm{19}}$};
\node at (0.,0.4) {$\mathit{\bm{43}}$};
\node at (0.,-0.4) {$\underline{\bm{68}}$};
\node at (2.,-0.6) {$\underline{\bm{44}}$};
\node[black] at (3.,0.4) {$\mathit{\bm{24}}$};
\node[black] at (3.,-0.4) {$\underline{\bm{29}}$};
\end{tikzpicture}