2eb5b67ddf
I was using --chapter, which is deprecated by PanDoc.
37 lines
939 B
Plaintext
37 lines
939 B
Plaintext
|
|
% Default to the notebook output style
|
|
((* if not cell_style is defined *))
|
|
((* set cell_style = 'style_ipython.tplx' *))
|
|
((* endif *))
|
|
|
|
% Inherit from the specified cell style.
|
|
((* extends cell_style *))
|
|
|
|
|
|
|
|
|
|
((* 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 predoc *))
|
|
((( super() )))
|
|
((* block tableofcontents *))\tableofcontents((* endblock tableofcontents *))
|
|
((* endblock predoc *))
|
|
|
|
((* block markdowncell scoped *))
|
|
((( cell.source | citation2latex | strip_files_prefix | convert_pandoc('markdown+tex_math_double_backslash', 'json',extra_args=[]) | resolve_references | convert_pandoc('json','latex', extra_args=["--top-level-division=chapter"]) )))
|
|
((* endblock markdowncell *))
|
|
|