├── .gitignore ├── 00-title.tex ├── 01-abstract.tex ├── 02-naming.tex ├── 03-intro.tex ├── 10-analysis.tex ├── 20-design.tex ├── 30-technology.tex ├── 40-research.tex ├── 50-conclusion.tex ├── 60-bibliography.tex ├── 70-application.tex ├── LICENSE ├── README.md ├── code └── main.go ├── img ├── bmstu.png └── golang.png ├── main.tex └── preambule.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architectv/tex-diploma-template/HEAD/.gitignore -------------------------------------------------------------------------------- /00-title.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architectv/tex-diploma-template/HEAD/00-title.tex -------------------------------------------------------------------------------- /01-abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architectv/tex-diploma-template/HEAD/01-abstract.tex -------------------------------------------------------------------------------- /02-naming.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architectv/tex-diploma-template/HEAD/02-naming.tex -------------------------------------------------------------------------------- /03-intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architectv/tex-diploma-template/HEAD/03-intro.tex -------------------------------------------------------------------------------- /10-analysis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architectv/tex-diploma-template/HEAD/10-analysis.tex -------------------------------------------------------------------------------- /20-design.tex: -------------------------------------------------------------------------------- 1 | \section{Конструкторская часть} 2 | 3 | \pagebreak -------------------------------------------------------------------------------- /30-technology.tex: -------------------------------------------------------------------------------- 1 | \section{Технологическая часть} 2 | 3 | \pagebreak -------------------------------------------------------------------------------- /40-research.tex: -------------------------------------------------------------------------------- 1 | \section{Исследовательская часть} 2 | 3 | \pagebreak -------------------------------------------------------------------------------- /50-conclusion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architectv/tex-diploma-template/HEAD/50-conclusion.tex -------------------------------------------------------------------------------- /60-bibliography.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architectv/tex-diploma-template/HEAD/60-bibliography.tex -------------------------------------------------------------------------------- /70-application.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architectv/tex-diploma-template/HEAD/70-application.tex -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architectv/tex-diploma-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architectv/tex-diploma-template/HEAD/README.md -------------------------------------------------------------------------------- /code/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architectv/tex-diploma-template/HEAD/code/main.go -------------------------------------------------------------------------------- /img/bmstu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architectv/tex-diploma-template/HEAD/img/bmstu.png -------------------------------------------------------------------------------- /img/golang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architectv/tex-diploma-template/HEAD/img/golang.png -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architectv/tex-diploma-template/HEAD/main.tex -------------------------------------------------------------------------------- /preambule.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architectv/tex-diploma-template/HEAD/preambule.tex --------------------------------------------------------------------------------