如何排版特殊的 Apple Mac 键盘符号?

如何排版特殊的 Apple Mac 键盘符号?

是否有标准方法来排版 Apple Mac 键盘的特殊符号?即卷曲矩形 ⌘ 和其他符号?

如果没有,您建议采取什么解决方法?

答案1

这里有可用的 Apple Keys 包:苹果键

它具有以下符号的字符大小的图像:

键列表

答案2

几个月前我发布了menukeys现在,一个赞让我想起了这个问题,所以我想在这里宣布这个包。它包含(我希望)所有 Apple 和 Windows 键的符号。

符号

这些符号是用 TikZ 生成的。代码可以在menukeys.sty手册的实现部分中找到。

此外,该软件包还提供用于排版快捷方式的宏。

例子

To set the unit of the rulers go to \menu{Extras > Settings > Rulers}
and choose between millimetres, inches and pixels. The short cut to
view the rulers is \keys{cmd + R}. Pressing these keys again will
hide the rulers.

The standard path for saving your document is \directory{Macintosh HD/
Users/ Your Name/Documents} but you can change it at \menu{Extras >
Settings > Saving} by clicking \menu{Change save path}.

答案3

如果您使用XeTeX或LuaTeX,您可以直接使用其中的一些符号。

但是,请注意,只有少数字体实际上包含所有符号,因此您可能必须从其他字体(如 XITS、DejaVu Sans 或 FreeSerif)加载它:

% Compile with xelatex or lualatex
\documentclass{article}
\usepackage{fontspec}
\newfontfamily\xits{xits.otf}

% provide a command for the command key symbol
\newcommand\cmdkey{{\xits ⌘}}
% make the symbol usable directly
\usepackage{newunicodechar}
\newunicodechar{⌘}{\cmdkey}

\begin{document}
Press the \cmdkey~key.
Release the ⌘ key.
\end{document}

结果

记录显示,常用的键是

  • ⌘ U+2318 景点标志
  • ⌥ U+2325 选项键
  • ⌫ U+232B 向左擦除
  • ⇧ U+21E7 向上白色箭头
  • ⌤ U+2324 两个水平线之间的向上箭头
  • ⇪ U+21EA 从栏向上的白色箭头
  • ↵ U+21B5 向下箭头,角向左
  • ↹ U+21B9 向左箭头指向条形图超过向右箭头指向条形图
  • ⇥ U+21E5 向右箭头指向栏
  • ⏏ U+23CF 弹出符号
  • ⎋ U+238B 带西北箭头的虚线圆圈

答案4

谷歌发现苹果符号通过)也许这会有所帮助。

或者,您也可以使用 TikZ 绘制它们。对于 Apple 徽标,我可以为您提供包含图像的命令。

如果您不喜欢 AppleSymbols,我可以使用 TikZ 来帮助您!

相关内容