You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
336 B

10 years ago
10 years ago
10 years ago
  1. # latex
  2. Full texlive distribution
  3. ## Usage
  4. ```sh
  5. $ docker run --rm -it -v $(pwd):/source schickling/latex
  6. ```
  7. Mount your local source folder to the container and run it inside the container.
  8. #### Compiling a latex document
  9. ```sh
  10. $ pdflatex my-document.tex
  11. ```
  12. #### Compiling a xetex document
  13. ```sh
  14. $ xelatex my-document.xtx
  15. ```