├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── README.zh-cn.md ├── hustreport ├── Makefile ├── adjust_checksum.pl ├── fig-example.pdf ├── hust-title.eps ├── hust-title.pdf ├── hustreport-en-example.pdf ├── hustreport-zh-example.pdf ├── hustreport.dtx ├── hustreport.ins └── hustreport.pdf ├── install ├── unix.sh └── win32.bat └── makewin32.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustreport/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustreport/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustreport/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustreport/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustreport/HEAD/README.zh-cn.md -------------------------------------------------------------------------------- /hustreport/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustreport/HEAD/hustreport/Makefile -------------------------------------------------------------------------------- /hustreport/adjust_checksum.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustreport/HEAD/hustreport/adjust_checksum.pl -------------------------------------------------------------------------------- /hustreport/fig-example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustreport/HEAD/hustreport/fig-example.pdf -------------------------------------------------------------------------------- /hustreport/hust-title.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustreport/HEAD/hustreport/hust-title.eps -------------------------------------------------------------------------------- /hustreport/hust-title.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustreport/HEAD/hustreport/hust-title.pdf -------------------------------------------------------------------------------- /hustreport/hustreport-en-example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustreport/HEAD/hustreport/hustreport-en-example.pdf -------------------------------------------------------------------------------- /hustreport/hustreport-zh-example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustreport/HEAD/hustreport/hustreport-zh-example.pdf -------------------------------------------------------------------------------- /hustreport/hustreport.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustreport/HEAD/hustreport/hustreport.dtx -------------------------------------------------------------------------------- /hustreport/hustreport.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustreport/HEAD/hustreport/hustreport.ins -------------------------------------------------------------------------------- /hustreport/hustreport.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustreport/HEAD/hustreport/hustreport.pdf -------------------------------------------------------------------------------- /install/unix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustreport/HEAD/install/unix.sh -------------------------------------------------------------------------------- /install/win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustreport/HEAD/install/win32.bat -------------------------------------------------------------------------------- /makewin32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-latex/hustreport/HEAD/makewin32.bat --------------------------------------------------------------------------------