├── .gitignore ├── .latexmkrc ├── LICENSE ├── Makefile ├── README.md ├── README.zh-cn.md ├── demo ├── fig-example.pdf └── main.tex ├── hust-title.pdf └── hustthesis.dtx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustthesis/HEAD/.gitignore -------------------------------------------------------------------------------- /.latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustthesis/HEAD/.latexmkrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustthesis/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustthesis/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustthesis/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustthesis/HEAD/README.zh-cn.md -------------------------------------------------------------------------------- /demo/fig-example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustthesis/HEAD/demo/fig-example.pdf -------------------------------------------------------------------------------- /demo/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustthesis/HEAD/demo/main.tex -------------------------------------------------------------------------------- /hust-title.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustthesis/HEAD/hust-title.pdf -------------------------------------------------------------------------------- /hustthesis.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustthesis/HEAD/hustthesis.dtx --------------------------------------------------------------------------------