[Tex/LaTex] venn diagram with TikZ

tikz-pgfvenn-diagrams

I'd like to create this Venn diagram in LaTeX (possibly with TikZ):

enter image description here

Could you point me in the right direction? I've seen lots of Venn diagram examples using TikZ but none with concentric circles.

Best Answer

enter image description here

\documentclass[tikz,border=12pt]{standalone}
\begin{document}
\begin{tikzpicture}
    \path 
        (0,0) rectangle (8,6) [draw]
        (0.5,5.5) node {$\emptyset$}
        (2.5,2) coordinate (A) node[below] {3.4} ellipse (2 and 1.5) [draw]
        coordinate (temp) at (2.5,2)    ellipse (0.6 and 0.6) [draw]
        (temp) +(0.5,-0.75) coordinate (B) node[below left] {5.1} -- (5,3.5) -- (5.5,3.5) node[right,text width=1.5]{Environment\\contact}
        (A) -- (4.5,4.5) -- (5,4.5) node[right]{Patient contact} ;
\end{tikzpicture}
\end{document}
Related Question