Chris Hold
Chris Hold
Yep, still fails. I think there is a fundamental issue. `\includegraphic` is not compatible with svg. However, from what I can see https://github.com/jupyter/nbconvert/blob/d7c286b9bd07a8670d8ab08469c2e266140522c1/share/jupyter/nbconvert/templates/latex/document_contents.tex.j2#L53 calls with `filename`, where it should be...
Some more details if I run `jupyter-nbconvert --debug --to latex notebook.ipynb` and then inspect the resulting .tex file I can also see that the include remains as `\includegraphics{figs/myfig1.png} ` whereas...
The issue came from the resulting latex call with `\includegraphics{figs/myfig.svg}`. Includegraphics can not handle svg files, therefore, there was a pre-processor script converting the svg files to pdf, which can...