├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── install-texlive.sh │ ├── test.yml │ └── texlive.profile ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── cjc.bst ├── cjc.cls ├── example-fig.pdf ├── example.bib ├── example.tex └── latexmkrc /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mage-tianxie/latex-/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mage-tianxie/latex-/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/install-texlive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mage-tianxie/latex-/HEAD/.github/workflows/install-texlive.sh -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mage-tianxie/latex-/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/texlive.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mage-tianxie/latex-/HEAD/.github/workflows/texlive.profile -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mage-tianxie/latex-/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mage-tianxie/latex-/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mage-tianxie/latex-/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mage-tianxie/latex-/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mage-tianxie/latex-/HEAD/README.md -------------------------------------------------------------------------------- /cjc.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mage-tianxie/latex-/HEAD/cjc.bst -------------------------------------------------------------------------------- /cjc.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mage-tianxie/latex-/HEAD/cjc.cls -------------------------------------------------------------------------------- /example-fig.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mage-tianxie/latex-/HEAD/example-fig.pdf -------------------------------------------------------------------------------- /example.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mage-tianxie/latex-/HEAD/example.bib -------------------------------------------------------------------------------- /example.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mage-tianxie/latex-/HEAD/example.tex -------------------------------------------------------------------------------- /latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mage-tianxie/latex-/HEAD/latexmkrc --------------------------------------------------------------------------------