├── .gitignore ├── .gitattributes ├── 使用前必读.docx ├── img ├── 使用前必读_页面_1.png ├── 使用前必读_页面_2.png ├── 使用前必读_页面_3.png ├── 使用前必读_页面_4.png └── 使用前必读_页面_5.png ├── 南京大学本科毕业论文word模板.dotx ├── .gitconfig └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | 使用前必读.pdf -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.docx diff=pandoc -------------------------------------------------------------------------------- /使用前必读.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idealclover/NJU-Thesis-Word/master/使用前必读.docx -------------------------------------------------------------------------------- /img/使用前必读_页面_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idealclover/NJU-Thesis-Word/master/img/使用前必读_页面_1.png -------------------------------------------------------------------------------- /img/使用前必读_页面_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idealclover/NJU-Thesis-Word/master/img/使用前必读_页面_2.png -------------------------------------------------------------------------------- /img/使用前必读_页面_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idealclover/NJU-Thesis-Word/master/img/使用前必读_页面_3.png -------------------------------------------------------------------------------- /img/使用前必读_页面_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idealclover/NJU-Thesis-Word/master/img/使用前必读_页面_4.png -------------------------------------------------------------------------------- /img/使用前必读_页面_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idealclover/NJU-Thesis-Word/master/img/使用前必读_页面_5.png -------------------------------------------------------------------------------- /南京大学本科毕业论文word模板.dotx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idealclover/NJU-Thesis-Word/master/南京大学本科毕业论文word模板.dotx -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- 1 | [diff "pandoc"] 2 | textconv=pandoc --to=markdown 3 | prompt = false 4 | [alias] 5 | wdiff = diff --word-diff=color --unified=1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | > ⚠️尚在开发中(WIP),待开发者通过毕业论文校验顺利毕业时发布正式版 2 | 3 | ![](./img/使用前必读_页面_1.png) 4 | 5 | ![](./img/使用前必读_页面_2.png) 6 | 7 | ![](./img/使用前必读_页面_3.png) 8 | 9 | ![](./img/使用前必读_页面_4.png) 10 | 11 | ![](./img/使用前必读_页面_5.png) --------------------------------------------------------------------------------