The best way to print your iPython laptop

What is the best way to print an iPython ( .ipynb) laptop that contains a lot of numbers / graphs, photos, and code that will appear with a horizontal scrollbar? I tried to convert them to HTML, slides, PDF, etc., but none of them brought a decent result. For example, slides have a super-large font / scaling, so that one page contains no more than 5 lines of text. I tried GitPrint, but it is only useful for markdown ( md) files . I tried to convert ipynbto texand use pdflatexto convert to PDF, but there are a lot of errors, and I continue to get stuck with a question mark hint (?) When I click on them, the result does not contain photos. So what's the best thing here? I am not interested in the extension, only that it looks good (for example ipynb) on paper.

+4
source share
1 answer

You can use nbconvertipynb to convert HTML file to HTML, and the question will be: How to print an HTML file fairly? And printing an HTML file will be much easier than printing an ipynb file.

The command looks like this:

jupyter nbconvert --to html filename.ipynb
+1
source

Source: https://habr.com/ru/post/1677358/


All Articles