Possible Duplicate:
Draw arc in tikz when center of circle is specified
an very trivial question but I can't do it! Sorry but I find coordinates confusing.
I would like to draw an arc around a circle; both should have the same center of rotation. And I want to position the arc relative to the circle.
Here is the MWE to correct:
\documentclass{article}
\usepackage{tikz}
\usepackage{graphicx}
\tikzset{state/.style={circle,draw=black, very thick,minimum size=4em}}
\begin{document}
\begin{tikzpicture}
\node[state, fill=black!20] (sh1) at (1,3) {Circle};
\draw[thick] (sh1) arc (0:300:2cm);
\end{tikzpicture}
\end{document}
How do I get to have the same center for both shapes, with relative positioning of the arc? Any simple and brilliant idea?

\draw ...command with\draw[thick] (sh1) ++(0:2cm) arc (0:300:2cm);to move to a point on the circle before drawing the arc. See Leo Liu's answer to Draw arc in tikz when center of circle is specified – Jake Aug 30 '12 at 11:14