├── .gitattributes ├── .gitignore ├── Lincense ├── fdl-1.3.txt └── gpl-3.0.txt ├── MainBody ├── Chapters │ ├── 0_0_Abstract.tex │ ├── 0_1_Abbreviations.tex │ ├── 0_2_Symbols.tex │ ├── Achievements.tex │ ├── Chapter2.tex │ ├── CopyrightAuthorization.tex │ ├── Introduction.tex │ ├── OriginalStatement.tex │ └── Thanks.tex ├── MainBody.tex └── ReferenceBase.bib ├── Manual ├── Chapters │ ├── 0_0_Abstract.tex │ ├── 0_1_Abbreviations.tex │ ├── 0_2_Symbols.tex │ ├── 1_Introduction.tex │ ├── 2_Using.tex │ ├── 3_Realization.tex │ ├── Achievements.tex │ ├── Appendix_History.tex │ ├── CopyrightAuthorization.tex │ ├── CopyrightStatement.tex │ ├── OriginalStatement.tex │ └── Thanks.tex ├── Manual.pdf ├── Manual.tex ├── Manualbib.bib └── preview.PNG ├── README.md ├── Reference Document ├── pkuthss-1.2beta │ └── pkuthss-1.2beta │ │ ├── ChangeLog.txt │ │ ├── chap │ │ ├── abstract.tex │ │ ├── chap1.tex │ │ ├── chap2.tex │ │ ├── chap3.tex │ │ ├── chap4.tex │ │ ├── conclusion.tex │ │ ├── copyright.tex │ │ ├── encl1.tex │ │ ├── introduction.tex │ │ ├── originauth.tex │ │ └── thanks.tex │ │ ├── chinesebst.bst │ │ ├── img │ │ ├── makefile │ │ ├── pkulogo.eps │ │ ├── pkulogo.ps │ │ ├── pkuword.eps │ │ └── pkuword.ps │ │ ├── license │ │ ├── fdl-1.3.txt │ │ └── gpl-3.0.txt │ │ ├── makefile │ │ ├── pkuthss.cls │ │ ├── pkuthss.def │ │ ├── sample.bib │ │ ├── sample.pdf │ │ └── sample.tex └── 四川大学硕士、博士学位论文格式.doc └── Template ├── Components └── Images │ └── SCU_TITLE.eps ├── chinesebst.bst ├── scuthesis.cls ├── scuthesis.def └── seuthesis.bst /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /Lincense/fdl-1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Lincense/fdl-1.3.txt -------------------------------------------------------------------------------- /Lincense/gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Lincense/gpl-3.0.txt -------------------------------------------------------------------------------- /MainBody/Chapters/0_0_Abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/MainBody/Chapters/0_0_Abstract.tex -------------------------------------------------------------------------------- /MainBody/Chapters/0_1_Abbreviations.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/MainBody/Chapters/0_1_Abbreviations.tex -------------------------------------------------------------------------------- /MainBody/Chapters/0_2_Symbols.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/MainBody/Chapters/0_2_Symbols.tex -------------------------------------------------------------------------------- /MainBody/Chapters/Achievements.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/MainBody/Chapters/Achievements.tex -------------------------------------------------------------------------------- /MainBody/Chapters/Chapter2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/MainBody/Chapters/Chapter2.tex -------------------------------------------------------------------------------- /MainBody/Chapters/CopyrightAuthorization.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/MainBody/Chapters/CopyrightAuthorization.tex -------------------------------------------------------------------------------- /MainBody/Chapters/Introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/MainBody/Chapters/Introduction.tex -------------------------------------------------------------------------------- /MainBody/Chapters/OriginalStatement.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/MainBody/Chapters/OriginalStatement.tex -------------------------------------------------------------------------------- /MainBody/Chapters/Thanks.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/MainBody/Chapters/Thanks.tex -------------------------------------------------------------------------------- /MainBody/MainBody.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/MainBody/MainBody.tex -------------------------------------------------------------------------------- /MainBody/ReferenceBase.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/MainBody/ReferenceBase.bib -------------------------------------------------------------------------------- /Manual/Chapters/0_0_Abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Manual/Chapters/0_0_Abstract.tex -------------------------------------------------------------------------------- /Manual/Chapters/0_1_Abbreviations.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Manual/Chapters/0_1_Abbreviations.tex -------------------------------------------------------------------------------- /Manual/Chapters/0_2_Symbols.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Manual/Chapters/0_2_Symbols.tex -------------------------------------------------------------------------------- /Manual/Chapters/1_Introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Manual/Chapters/1_Introduction.tex -------------------------------------------------------------------------------- /Manual/Chapters/2_Using.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Manual/Chapters/2_Using.tex -------------------------------------------------------------------------------- /Manual/Chapters/3_Realization.tex: -------------------------------------------------------------------------------- 1 | %!TEX root = ../Manual.tex 2 | \chapter{部分功能实现} 3 | \label{chap_Realization} 4 | -------------------------------------------------------------------------------- /Manual/Chapters/Achievements.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Manual/Chapters/Achievements.tex -------------------------------------------------------------------------------- /Manual/Chapters/Appendix_History.tex: -------------------------------------------------------------------------------- 1 | %!TEX root = ../Manual.tex 2 | \chapter{更新记录} 3 | \label{chap_App_History} 4 | -------------------------------------------------------------------------------- /Manual/Chapters/CopyrightAuthorization.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Manual/Chapters/CopyrightAuthorization.tex -------------------------------------------------------------------------------- /Manual/Chapters/CopyrightStatement.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Manual/Chapters/CopyrightStatement.tex -------------------------------------------------------------------------------- /Manual/Chapters/OriginalStatement.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Manual/Chapters/OriginalStatement.tex -------------------------------------------------------------------------------- /Manual/Chapters/Thanks.tex: -------------------------------------------------------------------------------- 1 | %!TEX root = ../Manual.tex 2 | \chapter{致谢} 3 | 在此谨感谢! 4 | -------------------------------------------------------------------------------- /Manual/Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Manual/Manual.pdf -------------------------------------------------------------------------------- /Manual/Manual.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Manual/Manual.tex -------------------------------------------------------------------------------- /Manual/Manualbib.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Manual/Manualbib.bib -------------------------------------------------------------------------------- /Manual/preview.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Manual/preview.PNG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/README.md -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/ChangeLog.txt -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chap/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chap/abstract.tex -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chap/chap1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chap/chap1.tex -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chap/chap2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chap/chap2.tex -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chap/chap3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chap/chap3.tex -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chap/chap4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chap/chap4.tex -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chap/conclusion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chap/conclusion.tex -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chap/copyright.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chap/copyright.tex -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chap/encl1.tex: -------------------------------------------------------------------------------- 1 | \chapter{更新记录} 2 | 3 | \verbatiminput{ChangeLog.txt} 4 | 5 | -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chap/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chap/introduction.tex -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chap/originauth.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chap/originauth.tex -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chap/thanks.tex: -------------------------------------------------------------------------------- 1 | \chapter{致谢} 2 | 3 | 感谢北大未名~BBS~的~MathTools~版和~Thesis~版诸位同学的支持, 4 | 特别感谢~cauchy~网友不断地对作者提出的诸多问题予以解答 :) 5 | 6 | -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chinesebst.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/chinesebst.bst -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/img/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/img/makefile -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/img/pkulogo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/img/pkulogo.eps -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/img/pkulogo.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/img/pkulogo.ps -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/img/pkuword.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/img/pkuword.eps -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/img/pkuword.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/img/pkuword.ps -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/license/fdl-1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/license/fdl-1.3.txt -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/license/gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/license/gpl-3.0.txt -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/makefile -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/pkuthss.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/pkuthss.cls -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/pkuthss.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/pkuthss.def -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/sample.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/sample.bib -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/sample.pdf -------------------------------------------------------------------------------- /Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/sample.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/pkuthss-1.2beta/pkuthss-1.2beta/sample.tex -------------------------------------------------------------------------------- /Reference Document/四川大学硕士、博士学位论文格式.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Reference Document/四川大学硕士、博士学位论文格式.doc -------------------------------------------------------------------------------- /Template/Components/Images/SCU_TITLE.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Template/Components/Images/SCU_TITLE.eps -------------------------------------------------------------------------------- /Template/chinesebst.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Template/chinesebst.bst -------------------------------------------------------------------------------- /Template/scuthesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Template/scuthesis.cls -------------------------------------------------------------------------------- /Template/scuthesis.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Template/scuthesis.def -------------------------------------------------------------------------------- /Template/seuthesis.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuiao/SCU_ThesisDissertation_LaTeXTemplate/HEAD/Template/seuthesis.bst --------------------------------------------------------------------------------