An open API service indexing awesome lists of open source software.

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*.

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 | ⋆ |