I am trying to recreate the image posted. So far I have managed to draw an annulus in the first quadrant but I am struggling to get a rectangle overlapping and highlighted in the region. In words, I would like to draw an annulus in the first quadrant, and overlap a rectangle onto the annulus and highlight the enclosed region. I’m not very versed in TikZ, but this is necessary for my thesis. Can anyone offer me a pointer? :)
Edit: my code thus far is as follows
\begin{tikzpicture}
\draw (-.5,0)--(3.5,0) node[right]{$\mathrm{Re}$};
\draw (0,-.5)--(0,3.5) node[above]{$\mathrm{Im}$};
\filldraw[fill=black, fill opacity=.2] (2.5,0) arc [radius=2.5, start angle=0, delta angle=90]
-- (0,3) arc [radius=3, start angle=90, delta angle=-90]
-- cycle;
\draw[fill=black,fill opacity=0.2] (0.8,2.9) rectangle (2.8,1.1);
\draw (0.8,2.9) node [above]{$\beta$};
\draw (2.85,1) node [right]{$\alpha$};
\end{tikzpicture}


please do this for metype of question which will often be ignored. – daleif Mar 30 '20 at 11:40(1,1) rectangle (1,1)A rectangle with zero area? – Sigur Mar 30 '20 at 11:55coordinate[pos=.18] (T3) coordinate[pos=.75] (T4)to the second arc (before-- cycle) to get points on the actual curve – daleif Mar 30 '20 at 12:38