f4d218e1b4
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.
27 lines
725 B
Python
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')
|
|
|