33c745d997
I moved book_format.py to the root directory so that all of the notebooks do not need to modify the system path to import it. It modifies the path on import so that all of the code in ./code can then be accessed. Altered links to nbviewer to account for no longer using subdirectories.
13 lines
292 B
Bash
Executable File
13 lines
292 B
Bash
Executable File
#! /bin/bash
|
|
|
|
echo "merging book..."
|
|
|
|
python merge_book.py > Kalman_and_Bayesian_Filters_in_Python.ipynb
|
|
|
|
echo "creating pdf..."
|
|
ipython nbconvert --to latex --template book --post PDF Kalman_and_Bayesian_Filters_in_Python.ipynb
|
|
|
|
mv Kalman_and_Bayesian_Filters_in_Python.pdf ..
|
|
echo "done."
|
|
|