Skip to content

Docker container used for compile XeLaTeX documents and deploy a generated PDF file.

License

Notifications You must be signed in to change notification settings

jpbernius/docker-xelatex

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

docker-xelatex

Docker Stars Docker Pulls

Docker container used for compile XeLaTex documents and deploy a generated PDF file.

docker run --rm -v $(shell pwd):/data jpbernius/xelatex make

Example Makefile

######################
#      Makefile      #
######################

FILE_NAME = bibliography

LATEX = xelatex
BIBER = biber

all: clean all1
all1: clean la bib la2 la3 
no: clean la la2 

la:
    @$(LATEX) $(FILE_NAME)
bib:
    @$(BIBER) $(FILE_NAME)
la2:
    @$(LATEX) $(FILE_NAME)
la3:
    @$(LATEX) $(FILE_NAME)
show:
    @open $(FILE_NAME).pdf &


clean:
    @rm -f *.log *.aux *.dvi *.ps *.blg *.bbl *.out *.bcf *.run.xml

About

Docker container used for compile XeLaTeX documents and deploy a generated PDF file.

Resources

License

Stars

Watchers

Forks

Packages

No packages published