{"id":27383105,"url":"https://github.com/jmwoll/latex-to-utf8","last_synced_at":"2025-04-13T15:35:06.848Z","repository":{"id":201479739,"uuid":"116286856","full_name":"jmwoll/latex-to-utf8","owner":"jmwoll","description":"Autohotkey script to automatically convert latex commands like \"\\alpha\" to unicode symbols in *any application*.","archived":false,"fork":false,"pushed_at":"2018-01-04T23:11:57.000Z","size":17,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2023-10-19T20:56:41.222Z","etag":null,"topics":["autohotkey","autohotkey-script","automation","latex","tex","utf-8"],"latest_commit_sha":null,"homepage":"","language":"AutoHotkey","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jmwoll.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2018-01-04T17:11:35.000Z","updated_at":"2023-10-19T22:09:42.101Z","dependencies_parsed_at":null,"dependency_job_id":"f5920ae7-6a9f-4b8d-9cc4-05c9410d211a","html_url":"https://github.com/jmwoll/latex-to-utf8","commit_stats":null,"previous_names":["jmwoll/latex-to-utf8"],"tags_count":null,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmwoll%2Flatex-to-utf8","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmwoll%2Flatex-to-utf8/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmwoll%2Flatex-to-utf8/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmwoll%2Flatex-to-utf8/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jmwoll","download_url":"https://codeload.github.com/jmwoll/latex-to-utf8/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248736920,"owners_count":21153671,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["autohotkey","autohotkey-script","automation","latex","tex","utf-8"],"created_at":"2025-04-13T15:35:06.231Z","updated_at":"2025-04-13T15:35:06.837Z","avatar_url":"https://github.com/jmwoll.png","language":"AutoHotkey","funding_links":[],"categories":[],"sub_categories":[],"readme":"A latex-to-utf8 autohotkey script.\nThe default trigger is the (in any case useless) capslock key.\nFor example, pressing (meant like this: first press capslock then type out \"\\\\-l-a-m-b-d-a\")\n```\n\u003ccapslock\u003e+\\lambda\n```\nwhich will result in the utf-8 character \"λ\" being printed out. Many common\nmath symbols are already added, and new ones are quickly added, too.\nVery handy if you want latex-style shortcuts in other applications.\n\nCurrently supported symbols:\n\n\n| Command       | UTF-8 Symbol  | \n| ------------- |:-------------:|\n| **greek**     |              | \n| \\\\alpha       |       α      |  \n| \\\\beta        |       β      |  \n| \\\\gamma       |       γ      |  \n| \\\\delta       |       δ      |  \n| \\\\epsilon     |       ε      |  \n| \\\\stigma      |       ϛ      |  \n| \\\\zeta      \t|       ζ      | \n| \\\\eta      \t|       η      | \n| \\\\theta      \t|       θ      | \n| \\\\iota      \t|       ι      | \n| \\\\kappa      \t|       κ      | \n| \\\\lambda      |       λ      | \n| \\\\mu     \t\t|       μ      |  \n| \\\\nu     \t\t|       ν      |\n| \\\\xi     \t\t|       ξ      |\n| \\\\omicron    \t|       ο      |\n| \\\\pi     \t\t|       π      |\n| \\\\koppa     \t|       ϟ      |\n| \\\\rho    \t\t|       ρ      |\n| \\\\sigma  \t\t|       σ      |\n| \\\\tau    \t\t|       τ      |\n| \\\\upsilon  \t|       υ      |\n| \\\\phi    \t\t|       φ      |\n| \\\\chi    \t\t|       χ      |\n| \\\\psi    \t\t|       ψ      |\n| \\\\omega  \t\t|       ω      |\n| (same for uppercase) |         |\n| **misc**     \t|              |\n| \\\\pm  \t\t|       ±      |\n| \\\\ldots  \t\t|       …      |\n| \\\\times  \t\t|       ×      |\n| \\\\forall  \t|       ∀      |\n| \\\\partial\t\t|       ∂      |\n| \\\\exists \t\t|       ∃      |\n| \\\\nexists\t\t|       ∄       |\n| \\\\varnothing\t|       ∅       |\n| \\\\varnabla\t|       ∇      |\n| \\In\t  \t\t|       ∈      |\n| \\\\notin  \t\t|       ∉       |\n| \\\\ni  \t\t|       ∋      |\n| \\\\nni  \t\t|       ∌       |\n| \\\\prod  \t\t|       Π      |\n| \\\\coprod \t\t|       ∐       |\n| \\\\sum  \t\t|       Σ      |\n| \\\\sqrt  \t\t|       √      |\n| \\\\infty  \t\t|       ∞      |\n| \\\\propto  \t|       ∝      |\n| \\\\angle  \t\t|       ∠      |\n| \\\\measuredangle |     ∡       |\n| \\\\sphericalangle |    ∢       |\n| \\\\rightangle  |       ∟      |\n| \\\\wedge\t  \t|       ∧      |\n| \\\\vee\t\t  \t|       ∨      |\n| \\\\cap \t  \t|       ∩      |\n| \\\\cup\t\t  \t|       ∪      |\n| \\\\int  \t\t|       ∫      |\n| \\\\iint\t  \t|       ∬      |\n| \\\\iint\t  \t|       ∬      |\n| \\\\iiint\t  \t|       ∭       |\n| \\\\oint\t  \t|       ∮      |\n| \\\\oiint\t  \t|       ∯       |\n| \\\\oiiint\t  \t|       ∰       |\n| \\\\Approx\t \t|       ≈      |\n| \\\\approxeq \t|       ≊       |\n| \\\\neq\t\t  \t|       ≠      |\n| \\\\equiv\t\t|       ≡      |\n| \\\\Nequiv\t\t|       ≢       |\n| \\\\leq\t\t\t|       ≤      |\n| \\\\geq\t\t\t|       ≥      |\n| \\\\Geqq\t\t|       ≧      |\n| \\\\Leqq\t\t|       ≦      |\n| \\\\lneqq\t\t|       ≨       |\n| \\\\gneqq\t\t|       ≩       |\n| \\\\ll\t\t\t|       ≪      |\n| \\\\gg\t\t\t|       ≫      |\n| \\\\subset\t\t|       ⊂      |\n| \\\\supset\t\t|       ⊃      |\n| \\\\nsubset\t\t|       ⊄       |\n| \\\\nsupset\t\t|       ⊅       |\n| \\\\Subseteq\t|       ⊆      |\n| \\\\Supseteq\t|       ⊇      |\n| \\\\oplus\t\t|       ⊕      |\n| \\\\ominus\t\t|       ⊖       |\n| \\\\otimes\t\t|       ⊗       |\n| \\\\odot\t\t|       ⊙      |\n| \\\\cdot\t\t|       ⋅       |\n| \\\\diamond\t\t|       ⋄       |\n| \\\\star\t\t|       ⋆       |\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjmwoll%2Flatex-to-utf8","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjmwoll%2Flatex-to-utf8","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjmwoll%2Flatex-to-utf8/lists"}