├── .gitignore ├── .gitmodules ├── README.md └── XDUThesis ├── bachelor.cls ├── bachelor ├── cover.sty ├── debug.sty └── suger.sty └── common ├── section.sty ├── switch.sty └── term.sty /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oopsno/XDUThesis/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oopsno/XDUThesis/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # XDUThesis 2 | 西安电子科技大学本科生毕业设计(论文)LaTeX模板 3 | -------------------------------------------------------------------------------- /XDUThesis/bachelor.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oopsno/XDUThesis/HEAD/XDUThesis/bachelor.cls -------------------------------------------------------------------------------- /XDUThesis/bachelor/cover.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oopsno/XDUThesis/HEAD/XDUThesis/bachelor/cover.sty -------------------------------------------------------------------------------- /XDUThesis/bachelor/debug.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oopsno/XDUThesis/HEAD/XDUThesis/bachelor/debug.sty -------------------------------------------------------------------------------- /XDUThesis/bachelor/suger.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oopsno/XDUThesis/HEAD/XDUThesis/bachelor/suger.sty -------------------------------------------------------------------------------- /XDUThesis/common/section.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oopsno/XDUThesis/HEAD/XDUThesis/common/section.sty -------------------------------------------------------------------------------- /XDUThesis/common/switch.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oopsno/XDUThesis/HEAD/XDUThesis/common/switch.sty -------------------------------------------------------------------------------- /XDUThesis/common/term.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oopsno/XDUThesis/HEAD/XDUThesis/common/term.sty --------------------------------------------------------------------------------