Document PDF build process and add a script for it
parent
ef53cac05b
commit
470456583c
@ -0,0 +1,23 @@
|
||||
#!/bin/sh
|
||||
|
||||
# usage:
|
||||
# ./build-pdf.sh
|
||||
# SPHINX=/path/to/sphinx-build ./build-pdf.sh
|
||||
# JOBS=3 ./build-pdf.sh ...
|
||||
# all command-line arguments are passed directly to sphinx-build - run
|
||||
# ``sphinx-build --help`` for a list, or see
|
||||
# https://www.sphinx-doc.org/en/master/man/sphinx-build.html
|
||||
|
||||
cd $(dirname "$0")
|
||||
cd ..
|
||||
|
||||
sphinx=sphinx-build
|
||||
if [ -n "$SPHINX" ]; then
|
||||
sphinx=$SPHINX
|
||||
fi
|
||||
|
||||
if [ -z "$JOBS" ]; then
|
||||
JOBS=2
|
||||
fi
|
||||
|
||||
"$sphinx" -M latexpdf . ./docs/pdf -w ./docs/_sphinx-warnings.txt -j "$JOBS" "$@"
|
Loading…
Reference in New Issue