├── .gitignore ├── AUTHORS.rst ├── Bib └── thesis.bib ├── Chapter ├── Chapter_Example.tex ├── Chapter_abbreviation.tex ├── Chapter_acknowledgement.tex ├── Chapter_algorithm.tex ├── Chapter_cnabstract.tex ├── Chapter_enabstract.tex ├── Chapter_experience.tex ├── Chapter_nomeclature.tex └── Chapter_publication.tex ├── LICENSE ├── README.md ├── README.rst ├── buptthesis.cls ├── config └── buptthesis.cfg ├── gbt7714-numerical.bst ├── gbt7714.sty ├── main.tex └── resources ├── bupt_en_name_and_seal.pdf ├── gbkai-Regular.ttf ├── logo.png └── name.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /Bib/thesis.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/Bib/thesis.bib -------------------------------------------------------------------------------- /Chapter/Chapter_Example.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/Chapter/Chapter_Example.tex -------------------------------------------------------------------------------- /Chapter/Chapter_abbreviation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/Chapter/Chapter_abbreviation.tex -------------------------------------------------------------------------------- /Chapter/Chapter_acknowledgement.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/Chapter/Chapter_acknowledgement.tex -------------------------------------------------------------------------------- /Chapter/Chapter_algorithm.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/Chapter/Chapter_algorithm.tex -------------------------------------------------------------------------------- /Chapter/Chapter_cnabstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/Chapter/Chapter_cnabstract.tex -------------------------------------------------------------------------------- /Chapter/Chapter_enabstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/Chapter/Chapter_enabstract.tex -------------------------------------------------------------------------------- /Chapter/Chapter_experience.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/Chapter/Chapter_experience.tex -------------------------------------------------------------------------------- /Chapter/Chapter_nomeclature.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/Chapter/Chapter_nomeclature.tex -------------------------------------------------------------------------------- /Chapter/Chapter_publication.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/Chapter/Chapter_publication.tex -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/README.rst -------------------------------------------------------------------------------- /buptthesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/buptthesis.cls -------------------------------------------------------------------------------- /config/buptthesis.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/config/buptthesis.cfg -------------------------------------------------------------------------------- /gbt7714-numerical.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/gbt7714-numerical.bst -------------------------------------------------------------------------------- /gbt7714.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/gbt7714.sty -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/main.tex -------------------------------------------------------------------------------- /resources/bupt_en_name_and_seal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/resources/bupt_en_name_and_seal.pdf -------------------------------------------------------------------------------- /resources/gbkai-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/resources/gbkai-Regular.ttf -------------------------------------------------------------------------------- /resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/resources/logo.png -------------------------------------------------------------------------------- /resources/name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaakk0F/BUPTGraduateThesisLatexTemplate/HEAD/resources/name.png --------------------------------------------------------------------------------