/docker-latex-thesis

Docker image used to build a thesis from the sources at https://sites.google.com/site/jochemrutgers/publications/phd-thesis

Primary LanguageDockerfile

LaTex docker image to build a thesis

Build Status Thesis template of Jochem Rutgers

Usage

Install Docker

To view the possible commands of the themplate run:

docker run -it -v $(pwd):/data guusk/docker-latex-thesis make help

To build the template run:

docker run -it -v $(pwd):/data guusk/docker-latex-thesis make fonts acrotex all

Create outline fonts

Reference awnser on stackoverflow

Ghostscript < 9.15

gs -o file.ps -dNOCACHE -sDEVICE=pswrite file.pdf
gs -o file-with-outlines.pdf -sDEVICE=pdfwrite file.ps
rm file.ps

Ghostscript >= 9.15

gs -o file-with-outlines.pdf -dNoOutputFonts -sDEVICE=pdfwrite file.pdf