Convert Ipynb To Pdf In Jupyter
Answer : A simple and surprisingly good solution is to print the notebook to pdf through the browser with ctrl+p . Just make sure your plots and figures are not on interactive mode otherwise they will not be displayed (set them to %matplotlib inline ). Exporting jupyter notebooks through latex is quite troublesome and takes a lot of tinkering to get something remotely close to publish ready. When I absolutely need publication quality I do it on a latex editor, but this tutorial goes in great length about doing it on jupyter. A few useful tips to get better results: Higher resolution plots Hide your code-cells from the pdf Take a look at these extensions to improve your jupyter documents For Mac OS X, the solution for me was to install MacTex first and then export the path to find it: ### TeX export PATH="/Library/TeX/Distributions/.DefaultTeX/Contents/Programs/texbin:$PATH" You can add this to your .bash_profile or similar config file to load it every time. See more here ...