Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/pictures/to-table.tex
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
\documentclass[png]{standalone}
\documentclass{standalone}
\usepackage{booktabs} % For professional tables
\usepackage{pifont} % For check and cross symbols
\usepackage{graphicx} % For rotating text
Expand Down
17 changes: 17 additions & 0 deletions etc/make-doc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ else
PYTHON="python3"
fi

echo "Checking whether to build the to-table . . ."
if command -v pdflatex && command -v inkscape 2>&1 >/dev/null; then
cd docs/pictures
echo "Building to-table . . ."
pdflatex to-table.tex
inkscape --pdf-poppler --export-type="svg" -o to-table.svg to-table.pdf
if [ $? -eq 0 ]; then
echo Successfully created to-table.svg
else
echo Warning: there was an issue with inkscape when creating to-table.svg
echo Please check the state of to-table.svg
fi
cd ../..
else
echo "Not building to-table"
fi

$PYTHON etc/check-docstring-indentation.py

cd docs/
Expand Down
Loading