├── .gitignore ├── .vscode └── settings.json ├── 2021 word template.rar ├── Font ├── KaiTi.ttf ├── simhei.ttf ├── simsun.ttc ├── times.ttf ├── timesbd.ttf ├── timesbi.ttf └── timesi.ttf ├── README.md ├── gbt7714-numerical.bst ├── gbt7714.sty ├── main.pdf ├── main.tex ├── njupthesis.cls ├── pic ├── 1.jpg ├── 2.jpg ├── 3.jpg └── 4.jpg └── reference.bib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiyu/NJUPT-Bachelor/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiyu/NJUPT-Bachelor/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /2021 word template.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiyu/NJUPT-Bachelor/HEAD/2021 word template.rar -------------------------------------------------------------------------------- /Font/KaiTi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiyu/NJUPT-Bachelor/HEAD/Font/KaiTi.ttf -------------------------------------------------------------------------------- /Font/simhei.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiyu/NJUPT-Bachelor/HEAD/Font/simhei.ttf -------------------------------------------------------------------------------- /Font/simsun.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiyu/NJUPT-Bachelor/HEAD/Font/simsun.ttc -------------------------------------------------------------------------------- /Font/times.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiyu/NJUPT-Bachelor/HEAD/Font/times.ttf -------------------------------------------------------------------------------- /Font/timesbd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiyu/NJUPT-Bachelor/HEAD/Font/timesbd.ttf -------------------------------------------------------------------------------- /Font/timesbi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiyu/NJUPT-Bachelor/HEAD/Font/timesbi.ttf -------------------------------------------------------------------------------- /Font/timesi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiyu/NJUPT-Bachelor/HEAD/Font/timesi.ttf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiyu/NJUPT-Bachelor/HEAD/README.md -------------------------------------------------------------------------------- /gbt7714-numerical.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiyu/NJUPT-Bachelor/HEAD/gbt7714-numerical.bst -------------------------------------------------------------------------------- /gbt7714.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiyu/NJUPT-Bachelor/HEAD/gbt7714.sty -------------------------------------------------------------------------------- /main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiyu/NJUPT-Bachelor/HEAD/main.pdf -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiyu/NJUPT-Bachelor/HEAD/main.tex -------------------------------------------------------------------------------- /njupthesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiyu/NJUPT-Bachelor/HEAD/njupthesis.cls -------------------------------------------------------------------------------- /pic/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiyu/NJUPT-Bachelor/HEAD/pic/1.jpg -------------------------------------------------------------------------------- /pic/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiyu/NJUPT-Bachelor/HEAD/pic/2.jpg -------------------------------------------------------------------------------- /pic/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiyu/NJUPT-Bachelor/HEAD/pic/3.jpg -------------------------------------------------------------------------------- /pic/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiyu/NJUPT-Bachelor/HEAD/pic/4.jpg -------------------------------------------------------------------------------- /reference.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiyu/NJUPT-Bachelor/HEAD/reference.bib --------------------------------------------------------------------------------