diff options
author | Jonas Smedegaard <dr@jones.dk> | 2023-12-10 11:00:47 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2023-12-10 11:00:47 +0100 |
commit | f4a9957b94f67f24c52b551c1d95ea776a828b7b (patch) | |
tree | 74afb54c54711225f59e6ee00dfab0154af4d5dd | |
parent | 6342280d7a8334087f19b6b2444b5aeb09d0449f (diff) |
wrap build script
-rwxr-xr-x | build.sh | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,11 @@ #!/bin/sh -xargs -a ./content/toc.txt pandoc -H content/preamble.tex --citeproc -o build/book.pdf ./config/.pandoc-config.yml --pdf-engine=xelatex --template=templates/default-2.11.4.latex -B ./content/cover.tex -A ./content/appendix/bios.tex
\ No newline at end of file +xargs -a ./content/toc.txt pandoc \ + -H content/preamble.tex \ + --citeproc \ + -o build/book.pdf \ + ./config/.pandoc-config.yml \ + --pdf-engine=xelatex \ + --template=templates/default-2.11.4.latex \ + -B ./content/cover.tex \ + -A ./content/appendix/bios.tex |