Giter Site home page Giter Site logo

sickhub / docker-texlive-pdflatex Goto Github PK

View Code? Open in Web Editor NEW
4.0 2.0 0.0 76 KB

Minimal texlive container with European standard classes and languages https://hub.docker.com/r/drpsychick/texlive-pdflatex/

License: GNU General Public License v3.0

Dockerfile 30.19% Shell 34.10% TeX 35.71%
texlive alpine pdflatex european multilingual gitlab-ci docker hacktoberfest2021 docker-image

docker-texlive-pdflatex's Introduction

Docker image CircleCI DockerHub pulls DockerHub stars Paypal GitHub Sponsor

license GitHub stars Contributors GitHub issues GitHub pull requests

Minimal texlive auto-building alpine image including pdflatex, European standard classes and languages

Example: source pdf

Manually build a PDF from tex

Use \usepackage[german]{babel} in your TeX document

docker run -it --rm -v $PWD:/data drpsychick/texlive-pdflatex pdflatex /data/myletter.tex
ls -la myletter.pdf

Automate builds with GitLab-CI

Simple .gitlab-ci.yml file to automate building of PDFs and making them available as artifacts

image: drpsychick/texlive-pdflatex

build:
  script:
    - find . -name \*.tex -exec pdflatex {} ';'
    # fail if number .tex files does not match number of .pdf files
    - if [ $(find . -name \*.tex |wc -l) -gt $(find . -name \*.pdf |wc -l) ]; then exit 1; fi
  artifacts:
    paths:
      - "*.pdf"
    expire_in: 1 day

docker-texlive-pdflatex's People

Contributors

drpsychick avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

docker-texlive-pdflatex's Issues

Add examples and tests

Tasks:

  • add example lorem ipsum documents
  • ensure that PDF creation works by running it in the pipeline

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.