有 Windows 徽标吗?

有 Windows 徽标吗?

我很惊讶没有看到通过 Google 搜索可以快速解决这个问题,但我没有在那里或在这个网站上看到它。

有人知道 LaTeX 中的 Windows 徽标符号吗?我使用了变性,但在那里找不到。我想这个问题已经被问过很多次了,唉。

我也应该让你知道原因。我正在为 Windows 的一个程序编写说明,其中包括对快捷键(Windows 键 + Esc 键)的帮助,我想说明一下,以使其万无一失。

在此先感谢您的帮助!

答案1

确实,似乎没有 Windows 符号,在全面的 LaTeX 符号列表Unicode 中也没有。此符号在翼丁字体,但并非到处都有。因此,似乎必须使用外部徽标。

德语维基百科的轮廓很漂亮,单色Windows 徽标。可以将其转换为.eps.pdf,然后包含在文档中:

\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}

结果

答案2

使用 XeLaTeX,您可以使用免费的 TrueType 字体说明 IT,提供大量产品符号:

\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}

输出结果

答案3

字体真棒提供许多操作系统徽标(使用 XeLaTeX/LauLaTeX 编译):

在此处输入图片描述

\documentclass{article}
\usepackage{fontspec,fontawesome}

\newcommand{\faWindows}{\FA\symbol{"F17A}}
\newcommand{\faLinux}{\FA\symbol{"F17C}}
\newcommand{\faApple}{\FA\symbol{"F179}}

\begin{document}

\verb|Windows:| \faWindows \par
\verb|Linux  :| \faLinux \par
\verb|Apple  :| \faApple

\end{document}

要查找相应的十六进制符号标识符,请参阅Font Awesome 备忘单

答案4

我假设您正在寻找类似这样的内容:enter image description here+ Esc。只需使用 将徽标作为图片包含在内即可\includegraphics

相关内容