[Tex/LaTex] Is the Windows logo available

symbolswindows

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!

Best Answer

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