Reputation: 748
I have a bunch of ipython notebooks (.ipynb
) that I want to convert to PDF.
I can use the following command to convert all the notebooks in a given directory.
jupyter nbconvert --to pdf *.ipynb
I was then wondering if I could output all the nbconverts to a single PDF, as if it was a book. What is the option to have a single output file? I could not find an answer in the docs.
Upvotes: 2
Views: 850
Reputation: 1010
nbconvert does not have a function to do that which I could find. There are other projects that are designed to do this. The ones I could find are:
Upvotes: 1