lewa/book/src/build.sh

25 lines
491 B
Bash
Raw Normal View History

2020-05-06 11:22:27 +00:00
#!/bin/sh
2020-05-06 11:55:37 +00:00
set -e
2020-05-06 11:22:27 +00:00
FILES='
intro/index.md
2020-05-06 11:55:37 +00:00
intro/diary_language.md
intro/CHANGELOG.md
2020-05-08 12:13:03 +00:00
01_phonology/index.md
2020-05-15 17:29:23 +00:00
02_typology/index.md
02_typology/word_order.md
02_typology/typology.md
2020-05-15 21:17:57 +00:00
03_nouns_verbs/index.md
2020-05-18 11:53:10 +00:00
dictionary.md
2020-05-06 11:22:27 +00:00
'
set -x
2020-05-06 11:55:37 +00:00
pandoc -o ../book/lewa.epub --epub-chapter-level=2 --resource-path=. title.md $FILES
pandoc -o ../book/lewa.pdf --include-in-header sectionpagebreak.tex --variable=subparagraph --toc --toc-depth=2 --pdf-engine xelatex --resource-path=. title.md $FILES
2020-05-06 11:22:27 +00:00