├── .gitignore ├── README.md ├── slides ├── Makefile ├── common │ ├── background_white.jpg │ ├── logo-mkn-short.pdf │ ├── logo-mkn.pdf │ ├── math-cs.pdf │ └── short-v.pdf ├── images │ └── graph.png ├── slides.pdf └── slides.tex └── thesis ├── Makefile ├── images └── graph.jpg ├── items ├── chap1.tex ├── chap2.tex ├── chap3.tex ├── chap4.tex ├── concl.tex ├── intro.tex └── problem.tex ├── spbudiploma.sty ├── thesis-main.pdf ├── thesis-main.tex └── titlepage.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/README.md -------------------------------------------------------------------------------- /slides/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/slides/Makefile -------------------------------------------------------------------------------- /slides/common/background_white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/slides/common/background_white.jpg -------------------------------------------------------------------------------- /slides/common/logo-mkn-short.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/slides/common/logo-mkn-short.pdf -------------------------------------------------------------------------------- /slides/common/logo-mkn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/slides/common/logo-mkn.pdf -------------------------------------------------------------------------------- /slides/common/math-cs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/slides/common/math-cs.pdf -------------------------------------------------------------------------------- /slides/common/short-v.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/slides/common/short-v.pdf -------------------------------------------------------------------------------- /slides/images/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/slides/images/graph.png -------------------------------------------------------------------------------- /slides/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/slides/slides.pdf -------------------------------------------------------------------------------- /slides/slides.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/slides/slides.tex -------------------------------------------------------------------------------- /thesis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/thesis/Makefile -------------------------------------------------------------------------------- /thesis/images/graph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/thesis/images/graph.jpg -------------------------------------------------------------------------------- /thesis/items/chap1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/thesis/items/chap1.tex -------------------------------------------------------------------------------- /thesis/items/chap2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/thesis/items/chap2.tex -------------------------------------------------------------------------------- /thesis/items/chap3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/thesis/items/chap3.tex -------------------------------------------------------------------------------- /thesis/items/chap4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/thesis/items/chap4.tex -------------------------------------------------------------------------------- /thesis/items/concl.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/thesis/items/concl.tex -------------------------------------------------------------------------------- /thesis/items/intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/thesis/items/intro.tex -------------------------------------------------------------------------------- /thesis/items/problem.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/thesis/items/problem.tex -------------------------------------------------------------------------------- /thesis/spbudiploma.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/thesis/spbudiploma.sty -------------------------------------------------------------------------------- /thesis/thesis-main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/thesis/thesis-main.pdf -------------------------------------------------------------------------------- /thesis/thesis-main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/thesis/thesis-main.tex -------------------------------------------------------------------------------- /thesis/titlepage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbu-math-cs/bsse-latex-templates/HEAD/thesis/titlepage.tex --------------------------------------------------------------------------------