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.
20 lines
489 B
Plaintext
20 lines
489 B
Plaintext
% Inherit from report
|
|
((* extends 'report.tplx' *))
|
|
|
|
|
|
((* block docclass *))
|
|
\documentclass{book}
|
|
\setcounter{chapter}{0}
|
|
((* endblock docclass *))
|
|
|
|
((* block preamble *))
|
|
((* endblock preamble *))
|
|
|
|
((* block title *))
|
|
\title{Kalman and Bayesian Filters in Python}
|
|
\author{Roger R Labbe Jr}
|
|
((* endblock title *))
|
|
|
|
((* block markdowncell scoped *))
|
|
((( cell.source | citation2latex | strip_files_prefix | markdown2latex(extra_args=["--chapters"]) )))
|
|
((* endblock markdowncell *)) |