https://github.com/jmwoll/latex-to-utf8
Autohotkey script to automatically convert latex commands like "\alpha" to unicode symbols in *any application*.
https://github.com/jmwoll/latex-to-utf8
autohotkey autohotkey-script automation latex tex utf-8
Last synced: 15 days ago
JSON representation
Autohotkey script to automatically convert latex commands like "\alpha" to unicode symbols in *any application*.
- Host: GitHub
- URL: https://github.com/jmwoll/latex-to-utf8
- Owner: jmwoll
- License: gpl-3.0
- Created: 2018-01-04T17:11:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-04T23:11:57.000Z (over 7 years ago)
- Last Synced: 2023-10-19T20:56:41.222Z (over 1 year ago)
- Topics: autohotkey, autohotkey-script, automation, latex, tex, utf-8
- Language: AutoHotkey
- Homepage:
- Size: 16.6 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
A latex-to-utf8 autohotkey script.
The default trigger is the (in any case useless) capslock key.
For example, pressing (meant like this: first press capslock then type out "\\-l-a-m-b-d-a")
```
+\lambda
```
which will result in the utf-8 character "λ" being printed out. Many common
math symbols are already added, and new ones are quickly added, too.
Very handy if you want latex-style shortcuts in other applications.Currently supported symbols:
| Command | UTF-8 Symbol |
| ------------- |:-------------:|
| **greek** | |
| \\alpha | α |
| \\beta | β |
| \\gamma | γ |
| \\delta | δ |
| \\epsilon | ε |
| \\stigma | ϛ |
| \\zeta | ζ |
| \\eta | η |
| \\theta | θ |
| \\iota | ι |
| \\kappa | κ |
| \\lambda | λ |
| \\mu | μ |
| \\nu | ν |
| \\xi | ξ |
| \\omicron | ο |
| \\pi | π |
| \\koppa | ϟ |
| \\rho | ρ |
| \\sigma | σ |
| \\tau | τ |
| \\upsilon | υ |
| \\phi | φ |
| \\chi | χ |
| \\psi | ψ |
| \\omega | ω |
| (same for uppercase) | |
| **misc** | |
| \\pm | ± |
| \\ldots | … |
| \\times | × |
| \\forall | ∀ |
| \\partial | ∂ |
| \\exists | ∃ |
| \\nexists | ∄ |
| \\varnothing | ∅ |
| \\varnabla | ∇ |
| \In | ∈ |
| \\notin | ∉ |
| \\ni | ∋ |
| \\nni | ∌ |
| \\prod | Π |
| \\coprod | ∐ |
| \\sum | Σ |
| \\sqrt | √ |
| \\infty | ∞ |
| \\propto | ∝ |
| \\angle | ∠ |
| \\measuredangle | ∡ |
| \\sphericalangle | ∢ |
| \\rightangle | ∟ |
| \\wedge | ∧ |
| \\vee | ∨ |
| \\cap | ∩ |
| \\cup | ∪ |
| \\int | ∫ |
| \\iint | ∬ |
| \\iint | ∬ |
| \\iiint | ∭ |
| \\oint | ∮ |
| \\oiint | ∯ |
| \\oiiint | ∰ |
| \\Approx | ≈ |
| \\approxeq | ≊ |
| \\neq | ≠ |
| \\equiv | ≡ |
| \\Nequiv | ≢ |
| \\leq | ≤ |
| \\geq | ≥ |
| \\Geqq | ≧ |
| \\Leqq | ≦ |
| \\lneqq | ≨ |
| \\gneqq | ≩ |
| \\ll | ≪ |
| \\gg | ≫ |
| \\subset | ⊂ |
| \\supset | ⊃ |
| \\nsubset | ⊄ |
| \\nsupset | ⊅ |
| \\Subseteq | ⊆ |
| \\Supseteq | ⊇ |
| \\oplus | ⊕ |
| \\ominus | ⊖ |
| \\otimes | ⊗ |
| \\odot | ⊙ |
| \\cdot | ⋅ |
| \\diamond | ⋄ |
| \\star | ⋆ |