File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -45,15 +45,15 @@ default: _site
45
45
jupyter nbconvert --to notebook --allow-errors --ExecutePreprocessor.timeout=120 --execute --stdout $< > $@
46
46
47
47
notes.pdf : combined.ipynb $(PNGS ) Makefile
48
- jupyter nbconvert --to pdf --template latex.tplx $<
48
+ jupyter nbconvert --to pdf --template latex_template $<
49
49
mv combined.pdf notes.pdf
50
50
51
51
combined.ipynb : $(EXECUTED )
52
52
python nbmerge.py $^ $@
53
53
sed -i -e ' s/\.svg/\.png/g' $@
54
54
55
55
notes.tex : combined.ipynb $(PNGS ) Makefile
56
- jupyter nbconvert --to latex --template latex.tplx $<
56
+ jupyter nbconvert --to latex --template latex_template $<
57
57
mv combined.tex notes.tex
58
58
59
59
notebooks.zip : ${NBV2}
Original file line number Diff line number Diff line change
1
+ {
2
+ "base_template" : " latex" ,
3
+ "mimetypes" : {
4
+ "text/latex" : true ,
5
+ "text/tex" : true ,
6
+ "application/pdf" : true
7
+ }
8
+ }
Original file line number Diff line number Diff line change 5
5
6
6
% Default to the notebook output style
7
7
((* if not cell_style is defined *))
8
- ((* set cell_style = 'style_ipython.tplx ' *))
8
+ ((* set cell_style = 'style_ipython.tex.j2 ' *))
9
9
((* endif *))
10
10
11
11
% Inherit from the specified cell style.
You can’t perform that action at this time.
0 commit comments