├── .travis.yml ├── LICENSE ├── README.md ├── images ├── example.png ├── example2.png └── example3.png ├── latexalpha2.dtx ├── latexalpha2.ins ├── latexalpha2.pdf ├── latexalpha2.sty └── test ├── test.sh └── test.tex /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenliuyi/latex-alpha2/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenliuyi/latex-alpha2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenliuyi/latex-alpha2/HEAD/README.md -------------------------------------------------------------------------------- /images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenliuyi/latex-alpha2/HEAD/images/example.png -------------------------------------------------------------------------------- /images/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenliuyi/latex-alpha2/HEAD/images/example2.png -------------------------------------------------------------------------------- /images/example3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenliuyi/latex-alpha2/HEAD/images/example3.png -------------------------------------------------------------------------------- /latexalpha2.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenliuyi/latex-alpha2/HEAD/latexalpha2.dtx -------------------------------------------------------------------------------- /latexalpha2.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenliuyi/latex-alpha2/HEAD/latexalpha2.ins -------------------------------------------------------------------------------- /latexalpha2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenliuyi/latex-alpha2/HEAD/latexalpha2.pdf -------------------------------------------------------------------------------- /latexalpha2.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenliuyi/latex-alpha2/HEAD/latexalpha2.sty -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenliuyi/latex-alpha2/HEAD/test/test.sh -------------------------------------------------------------------------------- /test/test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenliuyi/latex-alpha2/HEAD/test/test.tex --------------------------------------------------------------------------------