Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 641 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 641 Bytes

pandoc-latex-make-docker

Description

Debian Jessie with texlive-full. Additionnal installed package:

  • Pandoc
  • Make
  • Ms fonts (contrib repository enabled)
  • Dia for diagram generation (can convert dia diagram to latex file)
  • Gnumeric for spreadsheet convertion to latex longtable
  • Biber

How-to use

Write a Makefile to build your pandoc-based project and run:

docker run --rm -it -v $(pwd):/source xabufr/pandoc-latex-make-docker

You can also create a build.sh like this:

#!
DIR=$( cd -P `dirname "$0"` && pwd )
sudo docker run --rm -it -v $DIR:/source xabufr/pandoc-latex-make-docker
```