335db298ff
I did the work on chapter 1 just to start somewhere. Trying to make the book fit nicely on a 6x9 book format.
43 lines
986 B
Plaintext
43 lines
986 B
Plaintext
% Inherit from report
|
|
((* extends 'report.tplx' *))
|
|
|
|
((* set cell_style = 'style_ipython.tplx' *))
|
|
|
|
((* block margins *))
|
|
\geometry{verbose,papersize={6in, 9in}, tmargin=.5in,bmargin=.5in,lmargin=.5in,rmargin=.5in}
|
|
((* endblock margins *))
|
|
|
|
((*- block in_prompt -*))
|
|
\mbox{ }\\ \\
|
|
{In [{}(((cell.execution_count)))]:}
|
|
((*- endblock in_prompt -*))
|
|
|
|
((* block input scoped *))
|
|
((( cell.source | highlight2latex )))
|
|
((* endblock input *))
|
|
|
|
|
|
((* block output_prompt *))
|
|
\mbox{ }\\
|
|
Out [{}(((cell.execution_count)))]:
|
|
((* endblock output_prompt *))
|
|
|
|
|
|
((* 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 *))
|
|
|