├── .github ├── ISSUE_TEMPLATE │ └── --bug.md └── workflows │ └── aio.yml ├── .gitignore ├── .vscode └── settings.json ├── HFUT_Thesis.json ├── LICENSE ├── Makefile ├── README.md ├── bib └── hfut.bib ├── chapters ├── abstract.tex ├── acknowledgements.tex ├── citations.tex ├── complementary.tex ├── expertspage.tex ├── floats.tex ├── intro.tex ├── math.tex ├── notation.tex └── publications.tex ├── figures ├── hfut-badge.pdf └── hfut-name.pdf ├── hfutsetup.tex ├── hfutthesis-doc.tex ├── hfutthesis-graduate.bbx ├── hfutthesis-graduate.bst ├── hfutthesis-graduate.cbx ├── hfutthesis-inline.cbx ├── hfutthesis-numeric.bbx ├── hfutthesis-numeric.cbx ├── hfutthesis-numerical.bst ├── hfutthesis.cls ├── latexmkrc └── main.tex /.github/ISSUE_TEMPLATE/--bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/.github/ISSUE_TEMPLATE/--bug.md -------------------------------------------------------------------------------- /.github/workflows/aio.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/.github/workflows/aio.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /HFUT_Thesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/HFUT_Thesis.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/README.md -------------------------------------------------------------------------------- /bib/hfut.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/bib/hfut.bib -------------------------------------------------------------------------------- /chapters/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/chapters/abstract.tex -------------------------------------------------------------------------------- /chapters/acknowledgements.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/chapters/acknowledgements.tex -------------------------------------------------------------------------------- /chapters/citations.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/chapters/citations.tex -------------------------------------------------------------------------------- /chapters/complementary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/chapters/complementary.tex -------------------------------------------------------------------------------- /chapters/expertspage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/chapters/expertspage.tex -------------------------------------------------------------------------------- /chapters/floats.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/chapters/floats.tex -------------------------------------------------------------------------------- /chapters/intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/chapters/intro.tex -------------------------------------------------------------------------------- /chapters/math.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/chapters/math.tex -------------------------------------------------------------------------------- /chapters/notation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/chapters/notation.tex -------------------------------------------------------------------------------- /chapters/publications.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/chapters/publications.tex -------------------------------------------------------------------------------- /figures/hfut-badge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/figures/hfut-badge.pdf -------------------------------------------------------------------------------- /figures/hfut-name.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/figures/hfut-name.pdf -------------------------------------------------------------------------------- /hfutsetup.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/hfutsetup.tex -------------------------------------------------------------------------------- /hfutthesis-doc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/hfutthesis-doc.tex -------------------------------------------------------------------------------- /hfutthesis-graduate.bbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/hfutthesis-graduate.bbx -------------------------------------------------------------------------------- /hfutthesis-graduate.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/hfutthesis-graduate.bst -------------------------------------------------------------------------------- /hfutthesis-graduate.cbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/hfutthesis-graduate.cbx -------------------------------------------------------------------------------- /hfutthesis-inline.cbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/hfutthesis-inline.cbx -------------------------------------------------------------------------------- /hfutthesis-numeric.bbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/hfutthesis-numeric.bbx -------------------------------------------------------------------------------- /hfutthesis-numeric.cbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/hfutthesis-numeric.cbx -------------------------------------------------------------------------------- /hfutthesis-numerical.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/hfutthesis-numerical.bst -------------------------------------------------------------------------------- /hfutthesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/hfutthesis.cls -------------------------------------------------------------------------------- /latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/latexmkrc -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFUTTUG/HFUT_Thesis/HEAD/main.tex --------------------------------------------------------------------------------