Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

I'm surprised I don't see this addressed quickly with a Google search, but I don't see it there or on this site.

Does anyone know of a Windows logo symbol in LaTeX? I used Dextify, but couldn't find it there. I would think this has been asked many times, alas.

I might as well let you know the reason, too. I'm writing instructions for a procedure for Windows, and it includes help with a shortcut (Windows Key + Escape key) that I would like to illustrate to make it foolproof.

Thanks in advance for your help!

share|improve this question

3 Answers

up vote 20 down vote accepted

Indeed, there doesn't seem to be a Windows symbol neither in the comprehensive LaTeX symbol list nor in Unicode. This symbol is in the WingDings font, but it is not available everywhere. Hence it appears one must use an external logo.

The German Wikipedia has a nice outline, monochrome Windows logo. It can be converted to an .eps or .pdf and then included in the document:

\documentclass{article}

\usepackage{graphicx}
\usepackage{keystroke}

% Lower the picture a little to match the text baseline
\newcommand{\WindowsLogo}{\raisebox{-0.1em}{%
  \includegraphics[height=0.8em]{Windows_3_logo_simplified}}}
\newcommand{\WinKey}{\keystroke{\WindowsLogo}}

\begin{document}

Press \WinKey+\keystroke{E} to open Windows Explorer.

\end{document}

Result

share|improve this answer
Very nice answer! I didn't know about the keystroke package – TH. Mar 17 '11 at 21:03

Using XeLaTeX, you can make use of the free TrueType font Illustrate IT, which offers a large collection of product symbols:

\documentclass{article}
\usepackage{fontspec}
\newcommand{\winlogoblack}{{\fontspec{illustrate-it.ttf}c}}
\newcommand{\winlogowhite}{{\fontspec{illustrate-it.ttf}d}}
\begin{document}
    Filled logo: \winlogoblack. Empty logo: \winlogowhite.
\end{document}

Output result

share|improve this answer

I'm assuming you're looking for something like this: enter image description here + Esc. Just include the logo as a picture using \includegraphics.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.