├── .gitignore ├── LICENSE ├── README.md ├── bib └── tex.bib ├── chapter ├── abstract.tex ├── chap-appA.tex ├── chap-preface.tex ├── chapter2.tex ├── conclusion.tex ├── denotation.tex ├── honest.tex ├── introduction.tex └── thanks.tex ├── clean ├── clean.bat ├── figures ├── sustech_logo_fig.png └── sustech_logo_text.png ├── main.pdf ├── main.tex ├── make ├── make.bat ├── sustcbib.bst ├── sustcthesis.cls └── sustcxtra.cls /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/README.md -------------------------------------------------------------------------------- /bib/tex.bib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/chapter/abstract.tex -------------------------------------------------------------------------------- /chapter/chap-appA.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/chapter/chap-appA.tex -------------------------------------------------------------------------------- /chapter/chap-preface.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/chapter/chap-preface.tex -------------------------------------------------------------------------------- /chapter/chapter2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/chapter/chapter2.tex -------------------------------------------------------------------------------- /chapter/conclusion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/chapter/conclusion.tex -------------------------------------------------------------------------------- /chapter/denotation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/chapter/denotation.tex -------------------------------------------------------------------------------- /chapter/honest.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/chapter/honest.tex -------------------------------------------------------------------------------- /chapter/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/chapter/introduction.tex -------------------------------------------------------------------------------- /chapter/thanks.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/chapter/thanks.tex -------------------------------------------------------------------------------- /clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/clean -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/clean.bat -------------------------------------------------------------------------------- /figures/sustech_logo_fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/figures/sustech_logo_fig.png -------------------------------------------------------------------------------- /figures/sustech_logo_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/figures/sustech_logo_text.png -------------------------------------------------------------------------------- /main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/main.pdf -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/main.tex -------------------------------------------------------------------------------- /make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/make -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/make.bat -------------------------------------------------------------------------------- /sustcbib.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/sustcbib.bst -------------------------------------------------------------------------------- /sustcthesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/sustcthesis.cls -------------------------------------------------------------------------------- /sustcxtra.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peng-YM/SUSTech-Thesis/HEAD/sustcxtra.cls --------------------------------------------------------------------------------