├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── buaathesis.cls ├── data ├── abstract.tex ├── appendix1-faq.tex ├── appendix2-contactus.tex ├── bachelor │ ├── acknowledgement.tex │ ├── assign.tex │ └── bachelor_info.tex ├── bibs.bib ├── chapter1-intro.tex ├── chapter2-config.tex ├── chapter3-download.tex ├── chapter4-basic.tex ├── chapter5-usage.tex ├── chapter6-implement.tex ├── com_info.tex ├── conclusion.tex ├── master │ ├── back1-achievement.tex │ ├── back2-acknowledgement.tex │ ├── back3-aboutauthor.tex │ ├── denotation.tex │ └── master_info.tex └── reference.tex ├── figure ├── buaamark.pdf ├── buaaname.pdf ├── buaaname_ch.pdf └── image.pdf ├── gbt7714-author-year.bst ├── gbt7714-numerical.bst ├── gbt7714.sty ├── msmake.bat ├── sample-bachelor.tex ├── sample-kaitireport.tex └── sample-master.tex /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/README.md -------------------------------------------------------------------------------- /buaathesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/buaathesis.cls -------------------------------------------------------------------------------- /data/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/data/abstract.tex -------------------------------------------------------------------------------- /data/appendix1-faq.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/data/appendix1-faq.tex -------------------------------------------------------------------------------- /data/appendix2-contactus.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | \chapter{联系我们} 3 | -------------------------------------------------------------------------------- /data/bachelor/acknowledgement.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/data/bachelor/acknowledgement.tex -------------------------------------------------------------------------------- /data/bachelor/assign.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/data/bachelor/assign.tex -------------------------------------------------------------------------------- /data/bachelor/bachelor_info.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/data/bachelor/bachelor_info.tex -------------------------------------------------------------------------------- /data/bibs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/data/bibs.bib -------------------------------------------------------------------------------- /data/chapter1-intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/data/chapter1-intro.tex -------------------------------------------------------------------------------- /data/chapter2-config.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/data/chapter2-config.tex -------------------------------------------------------------------------------- /data/chapter3-download.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/data/chapter3-download.tex -------------------------------------------------------------------------------- /data/chapter4-basic.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/data/chapter4-basic.tex -------------------------------------------------------------------------------- /data/chapter5-usage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/data/chapter5-usage.tex -------------------------------------------------------------------------------- /data/chapter6-implement.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | \chapter{模板代码实现} 3 | -------------------------------------------------------------------------------- /data/com_info.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/data/com_info.tex -------------------------------------------------------------------------------- /data/conclusion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/data/conclusion.tex -------------------------------------------------------------------------------- /data/master/back1-achievement.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/data/master/back1-achievement.tex -------------------------------------------------------------------------------- /data/master/back2-acknowledgement.tex: -------------------------------------------------------------------------------- 1 | % !Mode:: "TeX:UTF-8" 2 | \chapter{致谢} 3 | -------------------------------------------------------------------------------- /data/master/back3-aboutauthor.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/data/master/back3-aboutauthor.tex -------------------------------------------------------------------------------- /data/master/denotation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/data/master/denotation.tex -------------------------------------------------------------------------------- /data/master/master_info.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/data/master/master_info.tex -------------------------------------------------------------------------------- /data/reference.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/data/reference.tex -------------------------------------------------------------------------------- /figure/buaamark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/figure/buaamark.pdf -------------------------------------------------------------------------------- /figure/buaaname.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/figure/buaaname.pdf -------------------------------------------------------------------------------- /figure/buaaname_ch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/figure/buaaname_ch.pdf -------------------------------------------------------------------------------- /figure/image.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/figure/image.pdf -------------------------------------------------------------------------------- /gbt7714-author-year.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/gbt7714-author-year.bst -------------------------------------------------------------------------------- /gbt7714-numerical.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/gbt7714-numerical.bst -------------------------------------------------------------------------------- /gbt7714.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/gbt7714.sty -------------------------------------------------------------------------------- /msmake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/msmake.bat -------------------------------------------------------------------------------- /sample-bachelor.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/sample-bachelor.tex -------------------------------------------------------------------------------- /sample-kaitireport.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/sample-kaitireport.tex -------------------------------------------------------------------------------- /sample-master.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHOSC/BUAAthesis/HEAD/sample-master.tex --------------------------------------------------------------------------------