Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/baygeldin/thesis-text
Bachelor graduation thesis LaTeX sources.
https://github.com/baygeldin/thesis-text
diploma latex math spbu thesis
Last synced: 21 days ago
JSON representation
Bachelor graduation thesis LaTeX sources.
- Host: GitHub
- URL: https://github.com/baygeldin/thesis-text
- Owner: baygeldin
- Created: 2018-04-03T20:05:50.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-16T15:23:57.000Z (over 6 years ago)
- Last Synced: 2024-11-11T05:03:14.860Z (2 months ago)
- Topics: diploma, latex, math, spbu, thesis
- Language: TeX
- Homepage:
- Size: 3.71 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bachelor Graduation Thesis
This repository contains LaTeX sources of my bachelor graduation thesis. The implementation can be found [here](https://github.com/baygeldin/StressDetectionKit).In order to setup a **perfect** local environment via Spacemacs:
1) Install TeX Live along with cyrillic languages package and make sure that XeTeX is included (e.g. on Arch it's `texlive-core`, `texlive-bin`, `texlive-lang` and `texlive-fontsextra` packages, on Ubuntu it's `texlive-xetex` and `texlive-lang-cyrillic`).
2) Add `latex` and `bibtex` layers to `.spacemacs`:```elisp
(latex :variables latex-build-command "LaTeX")
bibtex
```3) Set TeX engine to XeTeX in `.spacemacs`:
```elisp
(setq TeX-engine 'xetex)
```4) `SPC m b` or `, b` to build the document.
5) `SPC m v` or `, v` to view the document.
6) `, ,` and choose `BibTeX` to build bibliography (or `SPC SPC` to open `M-x` commands, choose `TeX-command-master` and then `BibTeX`). If citations are not rendered, build the document multiple times.
7) *PROFIT!*