[Tex/LaTex] Creating Logo with Fancy Font

fontsgraphicslogos

I am trying to creating a logo that resembles this one shown below, but I do not know the best way of going about it. I know of a fonts package that may be useful, but not sure how to overlay the letters on top of each as so. Would anyone know a neat way of accomplishing this?

Picture of Logo:

enter image description here

Best Answer

This is an easy job with tikz. Change colors and glyphs by yourself to suit your needs. (I am bad in their selection ;-)...)

\PassOptionsToPackage{svgnames,x11names}{xcolor}
\documentclass[tikz,margin=5pt]{standalone}
\begin{document}
\fontfamily{pzc}\selectfont
\begin{tikzpicture}
   \path[fill=Brown4!30!DarkBlue] (0,0) circle (1.17cm);
   \path[fill=blue!50!black!10] (0,0) circle (1.05cm and 1.1cm);
   \node[text=Brown4!30!DarkBlue,scale=3.5] at (-0.4,0.25) {R};
   \node[text=Brown4!30!DarkBlue,scale=3.5] at (0.25,-0.25) {T};
\end{tikzpicture}
\end{document}

enter image description here