diff options
author | Axel Dürkop <axel.duerkop@tuhh.de> | 2021-02-10 20:20:40 +0100 |
---|---|---|
committer | Axel Dürkop <axel.duerkop@tuhh.de> | 2021-02-10 20:20:40 +0100 |
commit | 00a3d900e1ab73cd473a5dafb4c980a2e27185c6 (patch) | |
tree | 726405130f1b59c170af491bb54d1abb739932c1 /build.sh | |
parent | 7aaa14d3ab6b46ad62801b89c080b89a0c6ced9d (diff) |
Add Docker command
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ #!/bin/sh -xargs -a ./content/toc.txt pandoc -H content/preamble.tex --citeproc -o build/book.pdf ./config/.pandoc-config.yml --pdf-engine=xelatex +# xargs -a ./content/toc.txt pandoc -H content/preamble.tex --citeproc -o build/book.pdf ./config/.pandoc-config.yml --pdf-engine=xelatex + +# Da pandoc 2.11.3 einen Bug mit einer Tabelle hat, muss ich lokal mit docker und pandoc 2.11.4 bauen + +docker run --rm -v $PWD:/data --entrypoint /bin/sh pandoc/latex:2.11.4 -c 'tlmgr install footmisc; /usr/bin/xargs -a ./content/toc.txt pandoc -H content/preamble.tex --citeproc -o build/book.pdf ./config/.pandoc-config.yml --pdf-engine=xelatex'
\ No newline at end of file |