├── .gitignore ├── .latexmkrc ├── .vscode └── settings.json ├── LICENSE ├── Makefile ├── README.md ├── Tongji.pdf ├── Tongjiletter.cls ├── example.png ├── logo.pdf ├── main.tex └── signature_block.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/tongji-recommendation-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/tongji-recommendation-template/HEAD/.latexmkrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/tongji-recommendation-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/tongji-recommendation-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/tongji-recommendation-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/tongji-recommendation-template/HEAD/README.md -------------------------------------------------------------------------------- /Tongji.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/tongji-recommendation-template/HEAD/Tongji.pdf -------------------------------------------------------------------------------- /Tongjiletter.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/tongji-recommendation-template/HEAD/Tongjiletter.cls -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/tongji-recommendation-template/HEAD/example.png -------------------------------------------------------------------------------- /logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/tongji-recommendation-template/HEAD/logo.pdf -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/tongji-recommendation-template/HEAD/main.tex -------------------------------------------------------------------------------- /signature_block.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/tongji-recommendation-template/HEAD/signature_block.pdf --------------------------------------------------------------------------------