This repo has been migrated to gitlab
This is our LaTeX container used to build all enterprises documents like invoice and quote.
use the /data volume to mount your tex directory and run :
docker run --rm -it -v $(pwd)/tests/:/data registry.gitlab.com/azae/latex pdflatex file.tex file.pdf
or if your LaTeX source directory is managed by Makefile :
docker run --rm -it -v $(pwd):/data registry.gitlab.com/azae/latex make pdf
Somes LaTeX .sty file :
- beamerthemeAzae.sty : Le Theme Beamer d'Azaé
- devis.sty / facture.sty : Packages de création de devis et de factures Françaises.
- tango.sty : Définition des couleurs Tango
You can Clone this repo and add sty path in TEXINPUTS environement variable like
git clone https://gitlab.com/azae/latex.git /latex
echo 'TEXINPUTS=$TEXINPUTS:/latex/sty/' >> ~/.bashrc