├── .githooks └── pre-commit ├── .gitignore ├── LICENSE ├── MANIFEST ├── README ├── README.rst ├── lualatex-math.dtx ├── lualatex-math.el ├── lualatex-math.ins └── testfiles ├── amsmath.lvt ├── amsmath.tlg ├── deprecation.lvt ├── deprecation.tlg ├── icomma-unicode.lvt ├── icomma-unicode.tlg ├── icomma.lvt ├── icomma.tlg ├── kernel-style.lvt ├── kernel-style.tlg ├── mathtools.lvt ├── mathtools.tlg ├── unicode.lvt └── unicode.tlg /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/MANIFEST -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/README -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | README -------------------------------------------------------------------------------- /lualatex-math.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/lualatex-math.dtx -------------------------------------------------------------------------------- /lualatex-math.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/lualatex-math.el -------------------------------------------------------------------------------- /lualatex-math.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/lualatex-math.ins -------------------------------------------------------------------------------- /testfiles/amsmath.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/testfiles/amsmath.lvt -------------------------------------------------------------------------------- /testfiles/amsmath.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/testfiles/amsmath.tlg -------------------------------------------------------------------------------- /testfiles/deprecation.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/testfiles/deprecation.lvt -------------------------------------------------------------------------------- /testfiles/deprecation.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/testfiles/deprecation.tlg -------------------------------------------------------------------------------- /testfiles/icomma-unicode.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/testfiles/icomma-unicode.lvt -------------------------------------------------------------------------------- /testfiles/icomma-unicode.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/testfiles/icomma-unicode.tlg -------------------------------------------------------------------------------- /testfiles/icomma.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/testfiles/icomma.lvt -------------------------------------------------------------------------------- /testfiles/icomma.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/testfiles/icomma.tlg -------------------------------------------------------------------------------- /testfiles/kernel-style.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/testfiles/kernel-style.lvt -------------------------------------------------------------------------------- /testfiles/kernel-style.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/testfiles/kernel-style.tlg -------------------------------------------------------------------------------- /testfiles/mathtools.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/testfiles/mathtools.lvt -------------------------------------------------------------------------------- /testfiles/mathtools.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/testfiles/mathtools.tlg -------------------------------------------------------------------------------- /testfiles/unicode.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/testfiles/unicode.lvt -------------------------------------------------------------------------------- /testfiles/unicode.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phst/lualatex-math/HEAD/testfiles/unicode.tlg --------------------------------------------------------------------------------