你如何做到“因此”? Mac 或 Textmate 中的 (∴) 符号?

发布于 2024-09-18 23:45:22 字数 47 浏览 9 评论 0原文

有没有办法在 Textmate 或 Mac 上使用键盘快捷键编写 ∴ 因此符号?

Is there a way to write the ∴ therefore symbol with keyboard shortcuts in Textmate or just on a mac?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

走野 2024-09-25 23:45:22

如果您想经常这样做,您可以在库中创建一个键绑定文件以将其映射到组合键。

在 ~/Library 中创建一个名为 KeyBindings 的目录。在目录中创建一个名为 DefaultKeyBinding.dict 的文件。您可以按以下格式添加按键绑定:

{
    "x" = (insertText:, "\U23CF");
    "y" = (insertText:, "hi"); /* warning: this will change 'y' to 'hi'! */
}

LHS 是您输入字符时按下的按键组合。您可以使用以下字符来指示命令键:

@ - Command

~ - Option

^ - Control

您需要查找字符的 unicode(在本例中,∴ 是 \U2234)。因此,要在每次键入 Control-M 时键入此字符,您可以使用

"^m" = (insertText:, "\U2234");

您可以在此处找到更多信息:

If you want to do this often, you can create a keybindings file in your Library to map it to a key combination.

In ~/Library create a directory named KeyBindings. Create a file named DefaultKeyBinding.dict inside the directory. You can add key bindings in this format:

{
    "x" = (insertText:, "\U23CF");
    "y" = (insertText:, "hi"); /* warning: this will change 'y' to 'hi'! */
}

The LHS is the key combination you'll hit to enter the character. You can use the following characters to indicate command keys:

@ - Command

~ - Option

^ - Control

You'll need to look up the unicode for your character (in this case, ∴ is \U2234). So to type this character whenever you typed Control-M, you'd use

"^m" = (insertText:, "\U2234");

You can find more information here: http://www.hcs.harvard.edu/~jrus/site/cocoa-text.html

爱你不解释 2024-09-25 23:45:22

首先使用句号,然后按住 Alt 键并按字母 H 并输入另一个句号。
.˙.

First you use a full stop, then you hold down alt and press the letter H and put in another full stop.
.˙.

盛夏尉蓝 2024-09-25 23:45:22

从系统偏好设置中,打开“在菜单栏中显示键盘和字符查看器”设置。

然后,“字符查看器”菜单将弹出一个工具,可让您搜索任何 unicode 字符(按名称)并将其插入 ∴ 一切就绪。

From System Preferences, turn on the "Show Keyboard & Character Viewer in menu bar" setting.

Then, the "Character Viewer" menu will pop up a tool that will let you search for any unicode character (by name) and insert it ∴ you're all set.

烏雲後面有陽光 2024-09-25 23:45:22

表情符号选择器 (⌘^Space) 有特殊字符。您可以搜索“therefore”或点击右下角的双箭头(≫)来浏览符号。

The emoji picker (⌘^Space) has special characters. You can search for "therefore" or hit the double arrow in the bottom right (≫) to browse symbols.

浅唱ヾ落雨殇 2024-09-25 23:45:22

如果使用 WORD for mac
启用“在数学区域外使用数学自动更正规则”
输入 \因此

If using WORD for mac
enable 'use maths autocorrect rules outside maths regions'
Type \therefore

眼眸 2024-09-25 23:45:22

如果您尝试将“因此”符号插入到 WORD 文档中,

请按住 ALT 键并输入 8756

希望能解答您的问题
问候阿尔~哈什。

If you are trying to insert the therefore symbol into a WORD DOCUMENT

Hold down the ALT key and type 8756

Hope the answer ur question
Regards Al~Hash.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文