# Copyright (c) 2025 Uwe Fechner
# SPDX-License-Identifier: MIT

# script to create a pdf documentation of the mathematical background
# requires pandoc to be installed

if [[ $(basename $(pwd)) == "bin" ]]; then
    cd ..
fi

cd docs/src && pandoc open_source_awe.md --bibliography=references.bib --citeproc --variable colorlinks=true --variable geometry:margin=2cm -o open_source_awe.pdf
