I am trying to do a fancy resume and I want to include in it a pie skill chart (see image below). Any Idea on How Can I create this image in Latex.
Thank you for your help,
Cheers
Here you have an starting point. A central circular node is surrounded with some wide arcs. Change line width, colors and angles according your taste.
\documentclass[tikz,border=2mm]{standalone}
\begin{document}
\begin{tikzpicture}[font=\sffamily\bfseries\large,
text=white,
border/.style={line width=14mm}]
\foreach \angle/\col [remember=\angle as \last (initially 0)] in
{90/blue, 125/cyan, 160/green!30!black, 210/green, 270/orange, 360/red}{
\draw[\col, border] (\last:2cm)
arc[start angle=\last, end angle=\angle, radius=2cm];
\draw[white, line width=1mm] (\last:1.3)--++(\last:1.4);
}
\node[line width=1mm, draw, circle, minimum width=2.5cm, white, fill=blue!80] {C/C++};
\node at (60:2cm) {Python};
\node at (108:2cm) {Other};
\node at (143:2cm) {Java};
\node[text width=1cm, align=center, font=\sffamily\bfseries\small] at (185:2cm)
{HTML CSS JS PHP};
\node at (240:2cm) {Bash};
\node at (295:2cm) {Android};
\end{tikzpicture}
\end{document}

\documentclass{...}and ending with\end{document}to show us what you have tried? Thanks :-) Also, see: http://tex.stackexchange.com/q/5718/32374 – darthbith May 11 '15 at 15:01