230539a3fd
Thought I had this fixed, not sure why it came back. Had to add \normalem to template file to force \emph to be italics, which is the default. Not sure why it has been doing underlining recently.
27 lines
634 B
Plaintext
27 lines
634 B
Plaintext
% Inherit from report
|
|
%((* extends 'report.tplx' *))
|
|
|
|
((* set cell_style = 'style_ipython.tplx' *))
|
|
|
|
((* block docclass *))
|
|
\documentclass{book}
|
|
\setcounter{chapter}{0}
|
|
\raggedbottom
|
|
\usepackage{stix}
|
|
((* 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 *))
|
|
\normalem
|
|
\setlength{\parindent}{0em}
|
|
\setlength{\parskip}{0.5em}
|
|
((( cell.source | citation2latex | strip_files_prefix | markdown2latex(extra_args=["--chapters"]) )))
|
|
((* endblock markdowncell *)) |