add tag
topnush
Purim starts on the evening of March 6 2023.  But we don't have any Purim ducks so how will we celebrate?

The two main characters of Purim are Queen Esther and the baddy Haman. Queen Esther is normally depicted wearing a crown , with a veil and generally looking pretty. Although she is not always happy.

![Screenshot from 2023-03-05 11-46-12.png](/image?hash=d18ddc71feb497dcb692ec7543d55553d0d0cbb100bdc37865213e38f22dc269)

![queen esther](/image?hash=f394cdb9262484ec8e644042392218ea1a33924fdab5eb8006a57e55bd7ec281)

Haman is depicted as bad person wearing a three cornered hat.

![haman.jpg](/image?hash=5d3efc36792ff9fa6871fe781850c346aa2d6e8156936be0f508bf8c7df53b68)

![haman2.jpg](/image?hash=be6eefe78335105b863ea547564c5351ab47c779d1ebe61b7867e0344e3094f4)

There are two important other items in Purim. The first is the food hamantaschen, meant to represent the hat of Haman.

![Hamantaschen-circlex.jpg](/image?hash=a8b25544b9bc123895fe22e5ff8acce8ddf16757d9cd6086386f772222996ef4)


The second is the grogger (or rattle) that we shake to make a noise whenever Haman's name is said and we all shout "Booooo".

![wooden_purim_sameach_grogger_noisemaker_with_clown_1.jpg](/image?hash=129416c9696f87a395a17f5f8d5e5c73e0021d1f6825464a986477839cbe8f69)
Top Answer
CarLaTeX
For the queen a TikZduck, for Haman I think a TikZling wolf could be suitable:

```
\documentclass{article}
\usepackage{tikzducks}
\usepackage{tikzlings}

\begin{document}
\begin{tikzpicture}
\node[fill=green, minimum width=4cm, minimum height=4cm] at (1,1) {};
\duck[crown=red,jacket=white,  longhair=brown, necklace=blue]
\end{tikzpicture}
\begin{tikzpicture}
\node[fill=green, minimum width=4cm, minimum height=4cm] at (0,1) {};
\draw[brown, fill=brown!40!yellow, rounded corners, line width=2pt](-.9,1.8) to[bend right=20] (0,2.9) to[bend right=20] (.9,1.8) -- cycle;
\begin{scope}
\clip (-.9,1.8) to[bend right=20] (0,2.9) to[bend right=20] (.9,1.8) -- cycle;
\node[fill=brown, minimum size=.4cm, rotate=45] at (0,2.6) {};
\draw[brown, line width=1pt](0,2.9)--(0,0);
\end{scope}
\wolf[body=green!50!black]
\end{tikzpicture}
\end{document}
```
![image.png](/image?hash=f0b63582053faaa9bff6057b5fe75a206a7e765ebeb6e0cce78c65abb243f6be)
Answer #2
samcarter
> This is purely based on @CarLaTeX's very creative answer, so all credits should go to her!

A slight modification of the code from @CarLaTeX to keep the ears of the wolf nice and warm during the winter:

```
\documentclass[border=2pt]{standalone}
\usepackage{tikzlings}

\begin{document}
\begin{tikzpicture}
\wolf
\begin{scope}[yshift=0.18cm]
\draw[brown, fill=brown!40!yellow, rounded corners, line width=2pt](-.9,1.7) to[bend right=20] (0,2.9) to[bend right=20] (.9,1.7) to[bend right=10] (-.68,1.7) -- cycle;
\begin{scope}
\clip (-.9,1.8) to[bend right=20] (0,2.9) to[bend right=20] (.9,1.8) -- cycle;
\node[fill=brown, minimum size=.4cm, rotate=45] at (0,2.6) {};
\draw[brown, line width=1pt](0,2.9)--(0,0);
\end{scope}
\end{scope}
\end{tikzpicture}
\end{document}
```

![document.png](/image?hash=54579040e910a11f64641f10f9a2d7e8bbea4edf250780386d2c5cebdafdb963)

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.