├── .DS_Store ├── .gitattributes ├── .idea ├── .gitignore ├── Template-of-HKUST-GZ-Thesis-.iml ├── aws.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── .vscode └── settings.json ├── 000_thesis.tex ├── 00III_abstract.tex ├── 00II_acknowledgments.tex ├── 00I_dedication.tex ├── 01_introduction.tex ├── 02_guidelines.tex ├── 02_secienfic_report_literature_review.tex ├── 03_methods.tex ├── 05_conclusion.tex ├── A_tips.tex ├── LICENSE ├── README.md ├── references.bib ├── ustthesis.cls └── ustthesis.sty /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyfan-cs/Template-of-HKUST-GZ-Thesis/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyfan-cs/Template-of-HKUST-GZ-Thesis/HEAD/.gitattributes -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyfan-cs/Template-of-HKUST-GZ-Thesis/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/Template-of-HKUST-GZ-Thesis-.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyfan-cs/Template-of-HKUST-GZ-Thesis/HEAD/.idea/Template-of-HKUST-GZ-Thesis-.iml -------------------------------------------------------------------------------- /.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyfan-cs/Template-of-HKUST-GZ-Thesis/HEAD/.idea/aws.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyfan-cs/Template-of-HKUST-GZ-Thesis/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyfan-cs/Template-of-HKUST-GZ-Thesis/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyfan-cs/Template-of-HKUST-GZ-Thesis/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyfan-cs/Template-of-HKUST-GZ-Thesis/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyfan-cs/Template-of-HKUST-GZ-Thesis/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyfan-cs/Template-of-HKUST-GZ-Thesis/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /000_thesis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyfan-cs/Template-of-HKUST-GZ-Thesis/HEAD/000_thesis.tex -------------------------------------------------------------------------------- /00III_abstract.tex: -------------------------------------------------------------------------------- 1 | Abstract -------------------------------------------------------------------------------- /00II_acknowledgments.tex: -------------------------------------------------------------------------------- 1 | Thanks all -------------------------------------------------------------------------------- /00I_dedication.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyfan-cs/Template-of-HKUST-GZ-Thesis/HEAD/00I_dedication.tex -------------------------------------------------------------------------------- /01_introduction.tex: -------------------------------------------------------------------------------- 1 | \section{Thesis Overview} 2 | 3 | -------------------------------------------------------------------------------- /02_guidelines.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyfan-cs/Template-of-HKUST-GZ-Thesis/HEAD/02_guidelines.tex -------------------------------------------------------------------------------- /02_secienfic_report_literature_review.tex: -------------------------------------------------------------------------------- 1 | \section{Literature} 2 | 3 | -------------------------------------------------------------------------------- /03_methods.tex: -------------------------------------------------------------------------------- 1 | 2 | \section{Method 1} 3 | 4 | -------------------------------------------------------------------------------- /05_conclusion.tex: -------------------------------------------------------------------------------- 1 | \section{Thesis Summary} -------------------------------------------------------------------------------- /A_tips.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyfan-cs/Template-of-HKUST-GZ-Thesis/HEAD/A_tips.tex -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyfan-cs/Template-of-HKUST-GZ-Thesis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyfan-cs/Template-of-HKUST-GZ-Thesis/HEAD/README.md -------------------------------------------------------------------------------- /references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyfan-cs/Template-of-HKUST-GZ-Thesis/HEAD/references.bib -------------------------------------------------------------------------------- /ustthesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyfan-cs/Template-of-HKUST-GZ-Thesis/HEAD/ustthesis.cls -------------------------------------------------------------------------------- /ustthesis.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyfan-cs/Template-of-HKUST-GZ-Thesis/HEAD/ustthesis.sty --------------------------------------------------------------------------------