3e65b5d2f7
Changed default sizes of plots, changed the book template for pdf creation, and lots of minor edits, most changing bold to italic, and removing italic for emphasis.
24 lines
605 B
Plaintext
24 lines
605 B
Plaintext
% Inherit from report
|
|
%((* extends 'report.tplx' *))
|
|
|
|
((* set cell_style = 'style_ipython.tplx' *))
|
|
|
|
((* block docclass *))
|
|
\documentclass{book}
|
|
\setcounter{chapter}{0}
|
|
\raggedbottom
|
|
((* 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 *))
|
|
\setlength{\parindent}{0em}
|
|
\setlength{\parskip}{0.5em}
|
|
((( cell.source | citation2latex | strip_files_prefix | markdown2latex(extra_args=["--chapters"]) )))
|
|
((* endblock markdowncell *)) |