forked from UCL/rsd-engineeringcourse
-
Notifications
You must be signed in to change notification settings - Fork 10
/
latex.tplx
37 lines (27 loc) · 1.01 KB
/
latex.tplx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
% 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 title *))
\title{An introduction to Python Programming for Research}
((* endblock title *))
((* block author *))
\author{James Hetherington}
((* endblock author *))
%===============================================================================
% Latex Book
%===============================================================================
((* block predoc *))
((( super() )))
((* block tableofcontents *))\tableofcontents((* endblock tableofcontents *))
\providecommand{\tightlist}{%
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
((* endblock predoc *))
((* block docclass *))
\documentclass{report}
((* endblock docclass *))
((* block markdowncell scoped *))
((( cell.source | citation2latex | strip_files_prefix | markdown2latex(extra_args=["--chapters"]) )))
((* endblock markdowncell *))