handout
handout copied to clipboard
Turn Python scripts into handouts with Markdown and figures
A tool or method to convert an .ipynb file into handout equivalent .py would be great.
Let's collect key topics and then put together a user guide. Points that came up already: - Comparison to related projects (when (not) to use it) - Converting HTML via...
The output format is currently HTML, which can then be printed as PDF from the browser. It could be nice to directly export to PDF, ipynb and other formats.
[KaTeX](https://katex.org) and [MathJax](https://www.mathjax.org) seem like great options. Current status: LaTeX is included by default now. However, it is loaded from a URL and we are working on bundling a local...
Adding custom CSS is possible in two ways: ```python doc.add_html('') doc.add_html('') ``` We could add `doc.add_style(filename)` that copies the file into the output directory for the user.
Instead of writing a message every time saved, there should be one message in the beginning that states the location of the handout.
For my workflow, the greatest problem with this package at the moment is that it throws an error when running `handout.Handout()` in an interactive shell: ``` handout.Handout('/tmp') Traceback (most recent...
From https://github.com/danijar/handout/issues/20#issuecomment-520674552: ```python doc.add_text('') ``` We can add `doc.add_pagebreak()` if this is helpful, especially once we have a LaTeX exporter that could also support this.
Hi and thanks for this package, I just had a couple of questions if you don't mind me asking since I couldn't find any answers in the readme. 1) Is...