Kalman-and-Bayesian-Filters.../book.tplx
Roger Labbe 9c63574e80 Got PDF book working.
Converted format of all notebooks so they can be processed with nbconvert.
Wrote a build_book script that merges the notebook and creates book.pdf
2014-05-26 19:31:32 -07:00

27 lines
872 B
Plaintext

%((* extends 'report.tplx' *))
%===============================================================================
% Latex Book
%===============================================================================
((* block predoc *))
((( super() )))
((* block tableofcontents *))\tableofcontents((* endblock tableofcontents *))
((* endblock predoc *))
((* block title *))
\title{Kalman and Bayesian Filters in Python}
((* endblock title *))
% Define block headings
% Note: latex will only number headings that aren't starred
% (i.e. \subsection , but not \subsection* )
((* block h1 -*))\chapter((* endblock h1 -*))
((* block h2 -*))\section((* endblock h2 -*))
((* block h3 -*))\subsection((* endblock h3 -*))
((* block h4 -*))\subsubsection((* endblock h4 -*))
((* block h5 -*))\paragraph*((* endblock h5 -*))
((* block h6 -*))\subparagraph*((* endblock h6 -*))