Kalman-and-Bayesian-Filters.../pdf/to_pdf.py
Roger Labbe f4d218e1b4 Fixed PDF output; blank Particle filter chapter.
The PDF was not setting the Preface as a unnumbered chapter.
I think there is more work to get it's subsections unnumbered.

Added empty Particl filter chapter. Had to renumber the chapters
to make it fit in.
2015-05-01 10:42:53 -07:00

27 lines
725 B
Python

from __future__ import print_function
import io
import IPython.nbconvert.exporters.pdf as pdf
import fileinput
'''
for line in fileinput.input('book.tex', openhook=fileinput.hook_encoded("iso-8859-1")):
#print(line.replace('\chapter{Preface}\label{preface}', '\chapter*{Preface}\label{preface}'), end='')
# line.replace(' \chapter{Preface}\label{preface}', ' \chapter*{Preface}\label{preface}')
line.replace('shit', 'poop')
'''
f = open('book.tex', 'r', encoding="iso-8859-1")
filedata = f.read()
f.close()
newdata = filedata.replace('\chapter{Preface}', '\chapter*{Preface}')
f = open('book.tex', 'w', encoding="iso-8859-1")
f.write(newdata)
f.close()
p = pdf.PDFExporter()
p.run_latex('book.tex')