├── .gitignore ├── HHU-thesis.cls ├── LICENSE ├── README.md ├── bst ├── GBT7714-2005.bst └── GBT7714-2015.bst ├── document.pdf ├── document.tex ├── figures ├── hohai_badge.pdf └── logo │ └── hohai_logo.png ├── ref.bib └── tex ├── abbreviations.tex ├── abstract.tex ├── acknowledgement.tex ├── appendix.tex ├── bib.tex ├── chap_cite.tex ├── chap_eq.tex ├── chap_intro.tex ├── chap_pending.tex ├── info.tex └── preface.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitzron/HHU-thesis/HEAD/.gitignore -------------------------------------------------------------------------------- /HHU-thesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitzron/HHU-thesis/HEAD/HHU-thesis.cls -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitzron/HHU-thesis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitzron/HHU-thesis/HEAD/README.md -------------------------------------------------------------------------------- /bst/GBT7714-2005.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitzron/HHU-thesis/HEAD/bst/GBT7714-2005.bst -------------------------------------------------------------------------------- /bst/GBT7714-2015.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitzron/HHU-thesis/HEAD/bst/GBT7714-2015.bst -------------------------------------------------------------------------------- /document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitzron/HHU-thesis/HEAD/document.pdf -------------------------------------------------------------------------------- /document.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitzron/HHU-thesis/HEAD/document.tex -------------------------------------------------------------------------------- /figures/hohai_badge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitzron/HHU-thesis/HEAD/figures/hohai_badge.pdf -------------------------------------------------------------------------------- /figures/logo/hohai_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitzron/HHU-thesis/HEAD/figures/logo/hohai_logo.png -------------------------------------------------------------------------------- /ref.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitzron/HHU-thesis/HEAD/ref.bib -------------------------------------------------------------------------------- /tex/abbreviations.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitzron/HHU-thesis/HEAD/tex/abbreviations.tex -------------------------------------------------------------------------------- /tex/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitzron/HHU-thesis/HEAD/tex/abstract.tex -------------------------------------------------------------------------------- /tex/acknowledgement.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitzron/HHU-thesis/HEAD/tex/acknowledgement.tex -------------------------------------------------------------------------------- /tex/appendix.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitzron/HHU-thesis/HEAD/tex/appendix.tex -------------------------------------------------------------------------------- /tex/bib.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitzron/HHU-thesis/HEAD/tex/bib.tex -------------------------------------------------------------------------------- /tex/chap_cite.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitzron/HHU-thesis/HEAD/tex/chap_cite.tex -------------------------------------------------------------------------------- /tex/chap_eq.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitzron/HHU-thesis/HEAD/tex/chap_eq.tex -------------------------------------------------------------------------------- /tex/chap_intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitzron/HHU-thesis/HEAD/tex/chap_intro.tex -------------------------------------------------------------------------------- /tex/chap_pending.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitzron/HHU-thesis/HEAD/tex/chap_pending.tex -------------------------------------------------------------------------------- /tex/info.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitzron/HHU-thesis/HEAD/tex/info.tex -------------------------------------------------------------------------------- /tex/preface.tex: -------------------------------------------------------------------------------- 1 | % 前言 2 | \Preface{ 3 | 这里是前言,只有博士论文需要! 4 | } --------------------------------------------------------------------------------