8

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

azetina
  • 28,884
night owl
  • 7,593
  • Is it necessary that you create this using LaTeX/TikZ? Or is using Inkscape or Illustrator also an option? – Saaru Lindestøkke Nov 14 '13 at 19:50
  • 9
    –1: Questions about how to draw specific graphics that just post an image of the desired result are really not reasonable questions to ask on the site. Please post a minimal compilable document showing that you've tried to produce the image and then people will be happy to help you with any specific problems you may have. See minimal working example (MWE) for what needs to go into such a document. – Tobi Nov 14 '13 at 20:42
  • 1
    @BartArondson: No, not any particulars. I did not know the best way to overlay text on each like so, but I was aware of the Tikz and pstricks but have not yet got to fully exploit those packages to put together anything comprehensive. – night owl Nov 15 '13 at 00:27
  • @Tobi: Thank You for the input. I do know about a MWE but did not come up with anything that would work. I knew the route to go but no idea how to correctly start. – night owl Nov 15 '13 at 06:47
  • It is always preferred to tell (at least) what you’ve tried yet. Otherwise it’s just a “do it for me” question which are not very welcome here (and everywhere else, too …) – Tobi Nov 15 '13 at 08:04

3 Answers3

23

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

14

If you have the glyphs that make up the components,

\documentclass{article}
\usepackage{stackengine}
\usepackage{calc}% To make up for omission from stackengine V3.22
\usepackage{scalerel}
\begin{document}
\stackinset{c}{-.6ex}{c}{+.45ex}{\small\itshape R}{%
\stackinset{c}{+.3ex}{c}{-.45ex}{\small\itshape T}{%
\Huge\hstretch{1.2}{$O$}%
}}
\end{document}

enter image description here

Once you have the look you like, you can \scalebox it to whatever size you need (graphicx package required).

  • Very unique solution. I like the conciseness and the non manual longevity of inputting all specific information in piece by piece. Also, +1 for the nonchalant manner of using "promoting" :) your own built package (hehehe). You found a useful way to employ your package to a neat little example. – night owl Nov 15 '13 at 00:36
  • Interesting, where exactly would you place \scalebox if one did want to enlarge the logo? I tried, but it seemed to eject the letters from within its circle. – night owl Nov 15 '13 at 09:22
  • 1
    @nightowl basically, the complete document, from right after \begin{document} to right before \end{document} should be enclosed in the \scalebox to enlarge the image. – Steven B. Segletes Nov 16 '13 at 04:55
13

This is super-easy when you use Inkscape, which employs the Potrace bitmap tracing engine (also used for signature conversion).

  1. Import the bitmap into Inkscape (I made a screen grab of the image):

    enter image description here

  2. With the image selected, click Path > Trace Bitmap. Without changing any settings, click OK:

    enter image description here

  3. The image is now vectorized. You're only left to match the colours using the tools provided:

    enter image description here

  4. Save as PDF (or other vector format):

    enter image description here

Werner
  • 603,163
  • How do you match the colours? –  Nov 15 '13 at 22:39
  • 3
    @HarishKumar: Inkscape has a "dropper" tool (left vertical toolbar, second from the bottom in my screen shot). Alternatively, I use a similar tool in Windows's Paint. Darker blue is RGB = [34;33;96], inner light blue is RGB = [239;239;247]. – Werner Nov 15 '13 at 22:51