UnicodeMath
Plugin for Sublime for inserting unicode math symbols and emoji
Details
Installs
- Total 6K
- Win 3K
- Mac 2K
- Linux 2K
Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | Aug 30 | Aug 29 | Aug 28 | Aug 27 | Aug 26 | Aug 25 | Aug 24 | Aug 23 | Aug 22 | Aug 21 | Aug 20 | Aug 19 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 2 | 1 | 2 | 0 | 1 | 0 | 3 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 4 | 2 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 |
Mac | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 3 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 2 | 1 | 0 | 3 | 1 |
Readme
- Source
- raw.githubusercontent.com
UnicodeMath
Plugin for Sublime for inserting unicode math symbols
Installation
Install via PackageControl or git clone
in your Packages directory (Select Preferences → Browse Packages...
to open right packages directory).
Usage
Input backslash and name of unicode symbol (for example \forall
) then insert space and text will be automatically converted to ∀
To insert space use shift+space
You can disable conversion on space by setting convert_on_space
to false
.
Emoji
Emoji's names starts with colon (:
)
Special
There are also special way to convert subscripts and superscripts with several symbols, just input several symbols after \_
or \^
:
S^1+2k → S¹⁺²ᵏ S_1+2k → S₁₊₂ₖ

You can also convert list of chars with special prefix via \\prefix\abc
, which will be equivalent to \prefixa
\prefixb
and \prefixc
, for example:
\Bbb\ABCabc → 𝔸𝔹ℂ𝕒𝕓𝕔
Hex-code
Hex-code of unicode symbol can be also used in one of these formats:
\u12ba \U0001d7be \U+1F1D1
To explicitly convert (or convert back) use commands UnicodeMath: Convert, UnicodeMath: Convert Back, UnicodeMath: Convert Back (Code). Selection convert is also available:
To select symbols from list, use command UnicodeMath: Insert
Instant conversion
Instant conversion allows eager conversion of symbols in the following situations:
- When
\name
is typed, there is a symbol calledname
, and no other symbol starts withname
; - When
\nameX
is typed (forX
any character), there is a symbol calledname
, but none that starts withnameX
.
The intent is to remove control keystrokes and get the same result as when typing LaTeX code; for instance typing \delta \subseteq \pi(f)
with instant conversion enabled will input δ ⊆ π(f)
.
When using instant conversion it is recommended to disable accept_prefixes
. convert_on_space
can also be disabled to make a space after a symbol name use case 2 above instead of activating the conversion command.
Settings
You can add custom symbols into symbol-table in UnicodeMath settings (Preferences → Package Settings → UnicodeMath → Settings — User or command “Preferences: UnicodeMath Settings — User”)
(Note: don't use characters fom word_separators
, see #19 issue for details)
"symbols": { "mysymbol": "\u0021", "myothersymbol": "\u2080", "shortcode": "\\u0021", // code within string "longcode": "\\U00000021", "pluscode": "\\U+12345", "manycodes": "\\U+12345\\u0020", "codes-and-text": "Foo\\U+12345" }
Synonyms for existing symbols can also be set:
"synonyms": { "mys": "mysymbol" }
Now \mys
will insert the same symbol as \mysymbol
.
Disable plugin for specific syntaxes (most common and default is 'latex'):
"ignore_syntax": ["latex"]
Enable (default) or disable converting hex-codes:
"convert_codes": true
Enable (default) or disable converting multichar sub- and superscripts:
"convert_sub_super": true
Enable (default) or disable converting list of chars with prefix:
"convert_list": true
Enable or disable (default) instant conversion:
"convert_instantly": true
Enable or disable (default) treating a non-ambiguous prefix of a symbol name as the full name:
"accept_prefixes": true
Font settings
I prefer using Lucida Sans Unicode, it contains many unicode symbols.
"font_face": "Lucida Sans Unicode"
I also recommend to set directwrite
font option on Windows to allow font-substitution for unknown unicode symbols
"font_options": ["directwrite"]
Symbols table
You can see all predefined emoji, symbols and synonyms