2023-07-31 05:00:44 +03:00
|
|
|
# Dmitry Voronin Resume.
|
|
|
|
|
|
|
|
## How to build.
|
|
|
|
```bash
|
2023-07-31 05:02:55 +03:00
|
|
|
$ make $target
|
2023-07-31 05:00:44 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
### Available targets.
|
2023-07-31 05:03:34 +03:00
|
|
|
Taget | Description
|
2023-07-31 05:00:44 +03:00
|
|
|
--- | ---
|
|
|
|
all | Clean, build and view all languages.
|
|
|
|
clean | Clean project from build files.
|
|
|
|
en | Build English resume.
|
|
|
|
ru | Build Russian resume.
|
|
|
|
view | View built resumes in default PDF viewer.
|
|
|
|
|
|
|
|
## Requirements.
|
|
|
|
This project is built using TeX (LuaLaTeX) on GNU/Linux.
|
|
|
|
|
|
|
|
### Texlive setup.
|
|
|
|
```bash
|
|
|
|
$ wget https://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz
|
|
|
|
$ tar -xf install-tl-unx.tar.gz
|
|
|
|
$ rm install-tl-unx.tar.gz
|
|
|
|
$ cd ./install-tl-*
|
|
|
|
$ ./install-tl
|
|
|
|
```
|
2023-07-31 05:06:34 +03:00
|
|
|
|
|
|
|
### Installing missing dependencies.
|
|
|
|
When trying to build the project, lualatex may throw missing dependencies errors.
|
|
|
|
To install them use `$ tlmgr install $dependency`.
|