├── .gitignore ├── Biblio ├── gbt7714-unsrt.bst └── ref.bib ├── Img ├── neu │ ├── neu_logo.jpg │ ├── neu_logo.pdf │ └── neu_title.jpg ├── oaspl_a.pdf ├── oaspl_b.pdf ├── oaspl_c.pdf ├── oaspl_d.pdf ├── shock_cyn.jpg └── tc_q_criteria.jpg ├── LICENSE ├── README.md ├── Style ├── artracom.sty ├── artratex.sty ├── neuthesis.cfg └── neuthesis.cls ├── Tex ├── Abstract.tex ├── Backmatter.tex ├── Chap_Format.tex ├── Chap_Guide.tex ├── Chap_Intro.tex ├── Frontpages.tex └── Mainmatter.tex └── Thesis.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/.gitignore -------------------------------------------------------------------------------- /Biblio/gbt7714-unsrt.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Biblio/gbt7714-unsrt.bst -------------------------------------------------------------------------------- /Biblio/ref.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Biblio/ref.bib -------------------------------------------------------------------------------- /Img/neu/neu_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Img/neu/neu_logo.jpg -------------------------------------------------------------------------------- /Img/neu/neu_logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Img/neu/neu_logo.pdf -------------------------------------------------------------------------------- /Img/neu/neu_title.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Img/neu/neu_title.jpg -------------------------------------------------------------------------------- /Img/oaspl_a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Img/oaspl_a.pdf -------------------------------------------------------------------------------- /Img/oaspl_b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Img/oaspl_b.pdf -------------------------------------------------------------------------------- /Img/oaspl_c.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Img/oaspl_c.pdf -------------------------------------------------------------------------------- /Img/oaspl_d.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Img/oaspl_d.pdf -------------------------------------------------------------------------------- /Img/shock_cyn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Img/shock_cyn.jpg -------------------------------------------------------------------------------- /Img/tc_q_criteria.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Img/tc_q_criteria.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/README.md -------------------------------------------------------------------------------- /Style/artracom.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Style/artracom.sty -------------------------------------------------------------------------------- /Style/artratex.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Style/artratex.sty -------------------------------------------------------------------------------- /Style/neuthesis.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Style/neuthesis.cfg -------------------------------------------------------------------------------- /Style/neuthesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Style/neuthesis.cls -------------------------------------------------------------------------------- /Tex/Abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Tex/Abstract.tex -------------------------------------------------------------------------------- /Tex/Backmatter.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Tex/Backmatter.tex -------------------------------------------------------------------------------- /Tex/Chap_Format.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Tex/Chap_Format.tex -------------------------------------------------------------------------------- /Tex/Chap_Guide.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Tex/Chap_Guide.tex -------------------------------------------------------------------------------- /Tex/Chap_Intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Tex/Chap_Intro.tex -------------------------------------------------------------------------------- /Tex/Frontpages.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Tex/Frontpages.tex -------------------------------------------------------------------------------- /Tex/Mainmatter.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Tex/Mainmatter.tex -------------------------------------------------------------------------------- /Thesis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mervin0502/neuthesis/HEAD/Thesis.tex --------------------------------------------------------------------------------