Kalman-and-Bayesian-Filters.../build_book.bat
Roger Labbe 9c63574e80 Got PDF book working.
Converted format of all notebooks so they can be processed with nbconvert.
Wrote a build_book script that merges the notebook and creates book.pdf
2014-05-26 19:31:32 -07:00

23 lines
503 B
Batchfile

echo "merging book..."
python nbmerge.py Preface.ipynb Signals_and_Noise.ipynb g-h_filter.ipynb discrete_bayes.ipynb Gaussians.ipynb Kalman_Filters.ipynb Multidimensional_Kalman_Filters.ipynb Kalman_Filter_Math.ipynb Designing_Kalman_Filters.ipynb Extended_Kalman_Filters.ipynb Unscented_Kalman_Filter.ipynb > book.ipynb
echo "creating pdf..."
python nbconvert --to latex --template book --post PDF book.ipynb
mkdir output
copy /y *.tex output
copy /y *.pdf output
echo "done."