├── LICENSE ├── Makefile ├── README.md ├── apl ├── README.md ├── apl.ahk ├── apl.cin ├── apl.el ├── apl.exe ├── apl.inputplugin ├── apl.stats.txt ├── latex_apl.ahk ├── latex_apl.cin ├── latex_apl.el ├── latex_apl.exe ├── latex_apl.inputplugin └── latex_apl.stats.txt ├── data ├── apl │ ├── alphanumeric.txt │ └── apl.txt └── latex │ ├── alphanumeric.txt │ ├── ams.txt │ ├── applykeys.txt │ ├── astronomy.txt │ ├── english_punct.txt │ ├── games.txt │ ├── greek.txt │ ├── ipa.txt │ ├── latin_accent.txt │ ├── mathfont.txt │ ├── not.txt │ ├── subscripts.txt │ ├── superscripts.txt │ └── unicode.txt ├── generate.rb ├── ibus-install.sh ├── images └── latex-input.svg ├── latex.ahk ├── latex.cin ├── latex.el ├── latex.exe ├── latex.inputplugin ├── latex.stats.txt ├── latex.txt └── templates ├── ahk.erb ├── cin.erb ├── el.erb ├── inputplugin.erb └── txt.erb /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/README.md -------------------------------------------------------------------------------- /apl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/apl/README.md -------------------------------------------------------------------------------- /apl/apl.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/apl/apl.ahk -------------------------------------------------------------------------------- /apl/apl.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/apl/apl.cin -------------------------------------------------------------------------------- /apl/apl.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/apl/apl.el -------------------------------------------------------------------------------- /apl/apl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/apl/apl.exe -------------------------------------------------------------------------------- /apl/apl.inputplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/apl/apl.inputplugin -------------------------------------------------------------------------------- /apl/apl.stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/apl/apl.stats.txt -------------------------------------------------------------------------------- /apl/latex_apl.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/apl/latex_apl.ahk -------------------------------------------------------------------------------- /apl/latex_apl.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/apl/latex_apl.cin -------------------------------------------------------------------------------- /apl/latex_apl.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/apl/latex_apl.el -------------------------------------------------------------------------------- /apl/latex_apl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/apl/latex_apl.exe -------------------------------------------------------------------------------- /apl/latex_apl.inputplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/apl/latex_apl.inputplugin -------------------------------------------------------------------------------- /apl/latex_apl.stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/apl/latex_apl.stats.txt -------------------------------------------------------------------------------- /data/apl/alphanumeric.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/data/apl/alphanumeric.txt -------------------------------------------------------------------------------- /data/apl/apl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/data/apl/apl.txt -------------------------------------------------------------------------------- /data/latex/alphanumeric.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/data/latex/alphanumeric.txt -------------------------------------------------------------------------------- /data/latex/ams.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/data/latex/ams.txt -------------------------------------------------------------------------------- /data/latex/applykeys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/data/latex/applykeys.txt -------------------------------------------------------------------------------- /data/latex/astronomy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/data/latex/astronomy.txt -------------------------------------------------------------------------------- /data/latex/english_punct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/data/latex/english_punct.txt -------------------------------------------------------------------------------- /data/latex/games.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/data/latex/games.txt -------------------------------------------------------------------------------- /data/latex/greek.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/data/latex/greek.txt -------------------------------------------------------------------------------- /data/latex/ipa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/data/latex/ipa.txt -------------------------------------------------------------------------------- /data/latex/latin_accent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/data/latex/latin_accent.txt -------------------------------------------------------------------------------- /data/latex/mathfont.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/data/latex/mathfont.txt -------------------------------------------------------------------------------- /data/latex/not.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/data/latex/not.txt -------------------------------------------------------------------------------- /data/latex/subscripts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/data/latex/subscripts.txt -------------------------------------------------------------------------------- /data/latex/superscripts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/data/latex/superscripts.txt -------------------------------------------------------------------------------- /data/latex/unicode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/data/latex/unicode.txt -------------------------------------------------------------------------------- /generate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/generate.rb -------------------------------------------------------------------------------- /ibus-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/ibus-install.sh -------------------------------------------------------------------------------- /images/latex-input.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/images/latex-input.svg -------------------------------------------------------------------------------- /latex.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/latex.ahk -------------------------------------------------------------------------------- /latex.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/latex.cin -------------------------------------------------------------------------------- /latex.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/latex.el -------------------------------------------------------------------------------- /latex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/latex.exe -------------------------------------------------------------------------------- /latex.inputplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/latex.inputplugin -------------------------------------------------------------------------------- /latex.stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/latex.stats.txt -------------------------------------------------------------------------------- /latex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/latex.txt -------------------------------------------------------------------------------- /templates/ahk.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/templates/ahk.erb -------------------------------------------------------------------------------- /templates/cin.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/templates/cin.erb -------------------------------------------------------------------------------- /templates/el.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/templates/el.erb -------------------------------------------------------------------------------- /templates/inputplugin.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/templates/inputplugin.erb -------------------------------------------------------------------------------- /templates/txt.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkgrubb/latex-input/HEAD/templates/txt.erb --------------------------------------------------------------------------------