https://github.com/tariel-x/phdlatex
Docker image for building github.com/AndreyAkinshin/Russian-Phd-LaTeX-Dissertation-Template
https://github.com/tariel-x/phdlatex
dissertation docker latex phd pscyr texlive
Last synced: about 1 month ago
JSON representation
Docker image for building github.com/AndreyAkinshin/Russian-Phd-LaTeX-Dissertation-Template
- Host: GitHub
- URL: https://github.com/tariel-x/phdlatex
- Owner: tariel-x
- License: apache-2.0
- Created: 2019-01-06T12:25:26.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-15T13:16:07.000Z (about 7 years ago)
- Last Synced: 2025-10-23T18:58:30.155Z (8 months ago)
- Topics: dissertation, docker, latex, phd, pscyr, texlive
- Language: Dockerfile
- Size: 10.7 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# phdlatex

Docker образ для сборки шаблона [Russian-Phd-LaTeX-Dissertation-Template](http://github.com/AndreyAkinshin/Russian-Phd-LaTeX-Dissertation-Template).
Использует ubuntu 18.04, большинство пакетов из зависимостей `texlive-full`, а так же некоторые другие специфические пакеты, необходимые для сборки PDF.
Включает в себя шрифты из PSCyr (Times New Roman и прочие).
## Пример запуска
```bash
docker run -v /home/user/dissertation/source:/root/latexsource tarielx/phdlatex:latest make all
```
## Пример использования для Gitlab CI
```yaml
stages:
- build
build:
stage: build
image: tarielx/phdlatex:latest
script:
- make clean
- make all
artifacts:
paths:
- ./*.pdf
```