├── .gitignore ├── LICENSE ├── README.md ├── ltj-zhfonts.sty ├── main.pdf ├── main.tex └── pieces ├── b1.tex ├── b2.tex ├── b3.tex ├── b4.tex ├── m1.tex ├── m2.tex ├── m3.tex ├── m4.tex ├── m5.tex ├── p1.tex └── pieces-template.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXtw/latex-convention/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXtw/latex-convention/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXtw/latex-convention/HEAD/README.md -------------------------------------------------------------------------------- /ltj-zhfonts.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXtw/latex-convention/HEAD/ltj-zhfonts.sty -------------------------------------------------------------------------------- /main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXtw/latex-convention/HEAD/main.pdf -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXtw/latex-convention/HEAD/main.tex -------------------------------------------------------------------------------- /pieces/b1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXtw/latex-convention/HEAD/pieces/b1.tex -------------------------------------------------------------------------------- /pieces/b2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXtw/latex-convention/HEAD/pieces/b2.tex -------------------------------------------------------------------------------- /pieces/b3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXtw/latex-convention/HEAD/pieces/b3.tex -------------------------------------------------------------------------------- /pieces/b4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXtw/latex-convention/HEAD/pieces/b4.tex -------------------------------------------------------------------------------- /pieces/m1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXtw/latex-convention/HEAD/pieces/m1.tex -------------------------------------------------------------------------------- /pieces/m2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXtw/latex-convention/HEAD/pieces/m2.tex -------------------------------------------------------------------------------- /pieces/m3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXtw/latex-convention/HEAD/pieces/m3.tex -------------------------------------------------------------------------------- /pieces/m4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXtw/latex-convention/HEAD/pieces/m4.tex -------------------------------------------------------------------------------- /pieces/m5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXtw/latex-convention/HEAD/pieces/m5.tex -------------------------------------------------------------------------------- /pieces/p1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXtw/latex-convention/HEAD/pieces/p1.tex -------------------------------------------------------------------------------- /pieces/pieces-template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeXtw/latex-convention/HEAD/pieces/pieces-template.tex --------------------------------------------------------------------------------