Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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!*