515b03ec63
I finally learned that the raw cells let you put latex directly into the output. So now I have the appendix being created without the [1] %%latex showing up in the output. Also wrote code to parse the .tex file to make the Preface a chapter without numbering, so it is now a proper preface, and not "chapter 0". I have not touched the Windows generation tools, so PDF generation in Windows is now broken. I don't think I care.
14 lines
299 B
Bash
Executable File
14 lines
299 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 Kalman_and_Bayesian_Filters_in_Python.ipynb
|
|
ipython to_pdf.py
|
|
|
|
mv Kalman_and_Bayesian_Filters_in_Python.pdf ..
|
|
echo "done."
|
|
|