├── .gitignore ├── .travis.yml ├── CHANGES.md ├── Makefile ├── README.md ├── _config.yml ├── abbr ├── breqn-abbr-test.tex └── breqn-abbr.sty ├── breqn-bugs └── leqno_bug.tex ├── breqn.dtx ├── breqnbundle.ins ├── flexisym.dtx ├── historical ├── README.markdown ├── breqn-technotes.tex ├── breqn.lls ├── build.sh ├── cmbase.lls ├── eqbreak.lls ├── eqbreaks.pdf ├── eqlayouts.tex ├── flexisym.lls ├── lls.deh ├── lls2dtx.pl └── msabm.lls ├── mathstyle.dtx ├── testfiles ├── 00-test-1.luatex.tlg ├── 00-test-1.lvt ├── 00-test-1.tlg ├── 00-test-1.xetex.tlg ├── 01-clash-1.luatex.tlg ├── 01-clash-1.lvt ├── 01-clash-1.tlg ├── 01-clash-1.xetex.tlg ├── 01-clash-2.luatex.tlg ├── 01-clash-2.lvt ├── 01-clash-2.tlg ├── 01-clash-2.xetex.tlg ├── binom-frac.luatex.tlg ├── binom-frac.lvt ├── binom-frac.tlg ├── binom-frac.xetex.tlg ├── compact.luatex.tlg ├── compact.lvt ├── compact.tlg ├── compact.xetex.tlg ├── compact_w_slash.luatex.tlg ├── compact_w_slash.lvt ├── compact_w_slash.tlg ├── compact_w_slash.xetex.tlg ├── condition.luatex.tlg ├── condition.lvt ├── condition.tlg ├── condition.xetex.tlg ├── dgroup_dmath_star.luatex.tlg ├── dgroup_dmath_star.lvt ├── dgroup_dmath_star.tlg ├── dgroup_dmath_star.xetex.tlg ├── dgroup_width.luatex.tlg ├── dgroup_width.lvt ├── dgroup_width.tlg ├── dgroup_width.xetex.tlg ├── frame.luatex.tlg ├── frame.lvt ├── frame.tlg ├── frame.xetex.tlg ├── framesep.luatex.tlg ├── framesep.lvt ├── framesep.tlg ├── framesep.xetex.tlg ├── genfrac-1.luatex.tlg ├── genfrac-1.lvt ├── genfrac-1.tlg ├── genfrac-1.xetex.tlg ├── genfrac-2.luatex.tlg ├── genfrac-2.lvt ├── genfrac-2.tlg ├── genfrac-2.xetex.tlg ├── hiderel.luatex.tlg ├── hiderel.lvt ├── hiderel.tlg ├── hiderel.xetex.tlg ├── indentstep.luatex.tlg ├── indentstep.lvt ├── indentstep.tlg ├── indentstep.xetex.tlg ├── lineno.luatex.tlg ├── lineno.lvt ├── lineno.tlg ├── lineno.xetex.tlg ├── mathstyle-activechars.luatex.tlg ├── mathstyle-activechars.lvt ├── mathstyle-activechars.tlg ├── mathstyle-activechars.xetex.tlg ├── mathstyle-default.luatex.tlg ├── mathstyle-default.lvt ├── mathstyle-default.tlg ├── mathstyle-default.xetex.tlg ├── mathstyle-noactivechars.luatex.tlg ├── mathstyle-noactivechars.lvt ├── mathstyle-noactivechars.tlg ├── mathstyle-noactivechars.xetex.tlg ├── number.luatex.tlg ├── number.lvt ├── number.tlg ├── number.xetex.tlg ├── spread.luatex.tlg ├── spread.lvt ├── spread.tlg ├── spread.xetex.tlg ├── style.luatex.tlg ├── style.lvt ├── style.tlg ├── style.xetex.tlg ├── subsupstyle.lvt ├── subsupstyle.tlg ├── support │ └── breqn-test.cls ├── um-strut-1.luatex.tlg ├── um-strut-1.lvt ├── um-strut-1.tlg └── um-strut-1.xetex.tlg ├── texlive.profile ├── texlive.sh └── update-all.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/CHANGES.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/_config.yml -------------------------------------------------------------------------------- /abbr/breqn-abbr-test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/abbr/breqn-abbr-test.tex -------------------------------------------------------------------------------- /abbr/breqn-abbr.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/abbr/breqn-abbr.sty -------------------------------------------------------------------------------- /breqn-bugs/leqno_bug.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/breqn-bugs/leqno_bug.tex -------------------------------------------------------------------------------- /breqn.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/breqn.dtx -------------------------------------------------------------------------------- /breqnbundle.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/breqnbundle.ins -------------------------------------------------------------------------------- /flexisym.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/flexisym.dtx -------------------------------------------------------------------------------- /historical/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/historical/README.markdown -------------------------------------------------------------------------------- /historical/breqn-technotes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/historical/breqn-technotes.tex -------------------------------------------------------------------------------- /historical/breqn.lls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/historical/breqn.lls -------------------------------------------------------------------------------- /historical/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/historical/build.sh -------------------------------------------------------------------------------- /historical/cmbase.lls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/historical/cmbase.lls -------------------------------------------------------------------------------- /historical/eqbreak.lls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/historical/eqbreak.lls -------------------------------------------------------------------------------- /historical/eqbreaks.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/historical/eqbreaks.pdf -------------------------------------------------------------------------------- /historical/eqlayouts.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/historical/eqlayouts.tex -------------------------------------------------------------------------------- /historical/flexisym.lls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/historical/flexisym.lls -------------------------------------------------------------------------------- /historical/lls.deh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/historical/lls.deh -------------------------------------------------------------------------------- /historical/lls2dtx.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/historical/lls2dtx.pl -------------------------------------------------------------------------------- /historical/msabm.lls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/historical/msabm.lls -------------------------------------------------------------------------------- /mathstyle.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/mathstyle.dtx -------------------------------------------------------------------------------- /testfiles/00-test-1.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/00-test-1.luatex.tlg -------------------------------------------------------------------------------- /testfiles/00-test-1.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/00-test-1.lvt -------------------------------------------------------------------------------- /testfiles/00-test-1.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/00-test-1.tlg -------------------------------------------------------------------------------- /testfiles/00-test-1.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/00-test-1.xetex.tlg -------------------------------------------------------------------------------- /testfiles/01-clash-1.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/01-clash-1.luatex.tlg -------------------------------------------------------------------------------- /testfiles/01-clash-1.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/01-clash-1.lvt -------------------------------------------------------------------------------- /testfiles/01-clash-1.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/01-clash-1.tlg -------------------------------------------------------------------------------- /testfiles/01-clash-1.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/01-clash-1.xetex.tlg -------------------------------------------------------------------------------- /testfiles/01-clash-2.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/01-clash-2.luatex.tlg -------------------------------------------------------------------------------- /testfiles/01-clash-2.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/01-clash-2.lvt -------------------------------------------------------------------------------- /testfiles/01-clash-2.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/01-clash-2.tlg -------------------------------------------------------------------------------- /testfiles/01-clash-2.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/01-clash-2.xetex.tlg -------------------------------------------------------------------------------- /testfiles/binom-frac.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/binom-frac.luatex.tlg -------------------------------------------------------------------------------- /testfiles/binom-frac.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/binom-frac.lvt -------------------------------------------------------------------------------- /testfiles/binom-frac.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/binom-frac.tlg -------------------------------------------------------------------------------- /testfiles/binom-frac.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/binom-frac.xetex.tlg -------------------------------------------------------------------------------- /testfiles/compact.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/compact.luatex.tlg -------------------------------------------------------------------------------- /testfiles/compact.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/compact.lvt -------------------------------------------------------------------------------- /testfiles/compact.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/compact.tlg -------------------------------------------------------------------------------- /testfiles/compact.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/compact.xetex.tlg -------------------------------------------------------------------------------- /testfiles/compact_w_slash.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/compact_w_slash.luatex.tlg -------------------------------------------------------------------------------- /testfiles/compact_w_slash.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/compact_w_slash.lvt -------------------------------------------------------------------------------- /testfiles/compact_w_slash.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/compact_w_slash.tlg -------------------------------------------------------------------------------- /testfiles/compact_w_slash.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/compact_w_slash.xetex.tlg -------------------------------------------------------------------------------- /testfiles/condition.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/condition.luatex.tlg -------------------------------------------------------------------------------- /testfiles/condition.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/condition.lvt -------------------------------------------------------------------------------- /testfiles/condition.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/condition.tlg -------------------------------------------------------------------------------- /testfiles/condition.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/condition.xetex.tlg -------------------------------------------------------------------------------- /testfiles/dgroup_dmath_star.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/dgroup_dmath_star.luatex.tlg -------------------------------------------------------------------------------- /testfiles/dgroup_dmath_star.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/dgroup_dmath_star.lvt -------------------------------------------------------------------------------- /testfiles/dgroup_dmath_star.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/dgroup_dmath_star.tlg -------------------------------------------------------------------------------- /testfiles/dgroup_dmath_star.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/dgroup_dmath_star.xetex.tlg -------------------------------------------------------------------------------- /testfiles/dgroup_width.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/dgroup_width.luatex.tlg -------------------------------------------------------------------------------- /testfiles/dgroup_width.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/dgroup_width.lvt -------------------------------------------------------------------------------- /testfiles/dgroup_width.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/dgroup_width.tlg -------------------------------------------------------------------------------- /testfiles/dgroup_width.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/dgroup_width.xetex.tlg -------------------------------------------------------------------------------- /testfiles/frame.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/frame.luatex.tlg -------------------------------------------------------------------------------- /testfiles/frame.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/frame.lvt -------------------------------------------------------------------------------- /testfiles/frame.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/frame.tlg -------------------------------------------------------------------------------- /testfiles/frame.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/frame.xetex.tlg -------------------------------------------------------------------------------- /testfiles/framesep.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/framesep.luatex.tlg -------------------------------------------------------------------------------- /testfiles/framesep.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/framesep.lvt -------------------------------------------------------------------------------- /testfiles/framesep.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/framesep.tlg -------------------------------------------------------------------------------- /testfiles/framesep.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/framesep.xetex.tlg -------------------------------------------------------------------------------- /testfiles/genfrac-1.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/genfrac-1.luatex.tlg -------------------------------------------------------------------------------- /testfiles/genfrac-1.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/genfrac-1.lvt -------------------------------------------------------------------------------- /testfiles/genfrac-1.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/genfrac-1.tlg -------------------------------------------------------------------------------- /testfiles/genfrac-1.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/genfrac-1.xetex.tlg -------------------------------------------------------------------------------- /testfiles/genfrac-2.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/genfrac-2.luatex.tlg -------------------------------------------------------------------------------- /testfiles/genfrac-2.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/genfrac-2.lvt -------------------------------------------------------------------------------- /testfiles/genfrac-2.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/genfrac-2.tlg -------------------------------------------------------------------------------- /testfiles/genfrac-2.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/genfrac-2.xetex.tlg -------------------------------------------------------------------------------- /testfiles/hiderel.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/hiderel.luatex.tlg -------------------------------------------------------------------------------- /testfiles/hiderel.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/hiderel.lvt -------------------------------------------------------------------------------- /testfiles/hiderel.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/hiderel.tlg -------------------------------------------------------------------------------- /testfiles/hiderel.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/hiderel.xetex.tlg -------------------------------------------------------------------------------- /testfiles/indentstep.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/indentstep.luatex.tlg -------------------------------------------------------------------------------- /testfiles/indentstep.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/indentstep.lvt -------------------------------------------------------------------------------- /testfiles/indentstep.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/indentstep.tlg -------------------------------------------------------------------------------- /testfiles/indentstep.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/indentstep.xetex.tlg -------------------------------------------------------------------------------- /testfiles/lineno.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/lineno.luatex.tlg -------------------------------------------------------------------------------- /testfiles/lineno.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/lineno.lvt -------------------------------------------------------------------------------- /testfiles/lineno.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/lineno.tlg -------------------------------------------------------------------------------- /testfiles/lineno.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/lineno.xetex.tlg -------------------------------------------------------------------------------- /testfiles/mathstyle-activechars.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/mathstyle-activechars.luatex.tlg -------------------------------------------------------------------------------- /testfiles/mathstyle-activechars.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/mathstyle-activechars.lvt -------------------------------------------------------------------------------- /testfiles/mathstyle-activechars.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/mathstyle-activechars.tlg -------------------------------------------------------------------------------- /testfiles/mathstyle-activechars.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/mathstyle-activechars.xetex.tlg -------------------------------------------------------------------------------- /testfiles/mathstyle-default.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/mathstyle-default.luatex.tlg -------------------------------------------------------------------------------- /testfiles/mathstyle-default.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/mathstyle-default.lvt -------------------------------------------------------------------------------- /testfiles/mathstyle-default.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/mathstyle-default.tlg -------------------------------------------------------------------------------- /testfiles/mathstyle-default.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/mathstyle-default.xetex.tlg -------------------------------------------------------------------------------- /testfiles/mathstyle-noactivechars.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/mathstyle-noactivechars.luatex.tlg -------------------------------------------------------------------------------- /testfiles/mathstyle-noactivechars.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/mathstyle-noactivechars.lvt -------------------------------------------------------------------------------- /testfiles/mathstyle-noactivechars.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/mathstyle-noactivechars.tlg -------------------------------------------------------------------------------- /testfiles/mathstyle-noactivechars.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/mathstyle-noactivechars.xetex.tlg -------------------------------------------------------------------------------- /testfiles/number.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/number.luatex.tlg -------------------------------------------------------------------------------- /testfiles/number.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/number.lvt -------------------------------------------------------------------------------- /testfiles/number.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/number.tlg -------------------------------------------------------------------------------- /testfiles/number.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/number.xetex.tlg -------------------------------------------------------------------------------- /testfiles/spread.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/spread.luatex.tlg -------------------------------------------------------------------------------- /testfiles/spread.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/spread.lvt -------------------------------------------------------------------------------- /testfiles/spread.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/spread.tlg -------------------------------------------------------------------------------- /testfiles/spread.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/spread.xetex.tlg -------------------------------------------------------------------------------- /testfiles/style.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/style.luatex.tlg -------------------------------------------------------------------------------- /testfiles/style.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/style.lvt -------------------------------------------------------------------------------- /testfiles/style.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/style.tlg -------------------------------------------------------------------------------- /testfiles/style.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/style.xetex.tlg -------------------------------------------------------------------------------- /testfiles/subsupstyle.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/subsupstyle.lvt -------------------------------------------------------------------------------- /testfiles/subsupstyle.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/subsupstyle.tlg -------------------------------------------------------------------------------- /testfiles/support/breqn-test.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/support/breqn-test.cls -------------------------------------------------------------------------------- /testfiles/um-strut-1.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/um-strut-1.luatex.tlg -------------------------------------------------------------------------------- /testfiles/um-strut-1.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/um-strut-1.lvt -------------------------------------------------------------------------------- /testfiles/um-strut-1.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/um-strut-1.tlg -------------------------------------------------------------------------------- /testfiles/um-strut-1.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/testfiles/um-strut-1.xetex.tlg -------------------------------------------------------------------------------- /texlive.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/texlive.profile -------------------------------------------------------------------------------- /texlive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/texlive.sh -------------------------------------------------------------------------------- /update-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wspr/breqn/HEAD/update-all.sh --------------------------------------------------------------------------------