The PDF build command line is getting very long, and it needs another option. Create separate build scripts for HTML and PDF and just pass in the name of the markdown file. Adds -V subparagraph to fix a LaTeX error. Adds fallback font selection to the PDF script.
11 lines
339 B
Bash
Executable File
11 lines
339 B
Bash
Executable File
#!/bin/sh
|
|
# To install required tools in debian:
|
|
# sudo apt-get install pandoc texlive-latex-base texlive-fonts-recommended texlive-latex-extra
|
|
# For Windows you can use the MiKTeX installer https://miktex.org/download
|
|
|
|
./build-pdf.sh manual
|
|
./build-html.sh manual
|
|
|
|
./build-pdf.sh reference-cfg-format
|
|
./build-html.sh reference-cfg-format
|