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

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

Awesome Lists containing this project

README

          

# phdlatex

![Docker Cloud Build Status](https://img.shields.io/docker/cloud/build/tarielx/phdlatex.svg?style=flat-square)

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
```