├── .gitignore ├── Makefile ├── README.md ├── _config.yml ├── back ├── acknowledgements.tex ├── appA.tex ├── appendix01.tex ├── ceindex.tex ├── conclusion.tex ├── publications.tex └── resume.tex ├── body └── introduction.tex ├── ctex-fontset-siyuan.def ├── figures └── golfer.eps ├── front ├── cover.tex └── denotation.tex ├── hithesis.bst ├── hithesis.dtx ├── hithesis.ins ├── hithesis.sty ├── latexmkrc ├── main.tex └── reference.bib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/_config.yml -------------------------------------------------------------------------------- /back/acknowledgements.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/back/acknowledgements.tex -------------------------------------------------------------------------------- /back/appA.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/back/appA.tex -------------------------------------------------------------------------------- /back/appendix01.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/back/appendix01.tex -------------------------------------------------------------------------------- /back/ceindex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/back/ceindex.tex -------------------------------------------------------------------------------- /back/conclusion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/back/conclusion.tex -------------------------------------------------------------------------------- /back/publications.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/back/publications.tex -------------------------------------------------------------------------------- /back/resume.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/back/resume.tex -------------------------------------------------------------------------------- /body/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/body/introduction.tex -------------------------------------------------------------------------------- /ctex-fontset-siyuan.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/ctex-fontset-siyuan.def -------------------------------------------------------------------------------- /figures/golfer.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/figures/golfer.eps -------------------------------------------------------------------------------- /front/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/front/cover.tex -------------------------------------------------------------------------------- /front/denotation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/front/denotation.tex -------------------------------------------------------------------------------- /hithesis.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/hithesis.bst -------------------------------------------------------------------------------- /hithesis.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/hithesis.dtx -------------------------------------------------------------------------------- /hithesis.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/hithesis.ins -------------------------------------------------------------------------------- /hithesis.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/hithesis.sty -------------------------------------------------------------------------------- /latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/latexmkrc -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/main.tex -------------------------------------------------------------------------------- /reference.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkTom/sustech-hithesis/HEAD/reference.bib --------------------------------------------------------------------------------