Reputation: 1498
I am supposed to create pdf documents that contain math expression and graph images.
Until now my work flow was using matlab to draw the plots, export them into jpg, put them into OpenOffice / Word document describe how I get those plots trough math equations and finally export to pdf.
Recently I have found julia ( replacement for matlab ) and jupyter ( replacement for Word ).
Jupyter is awesome but the export to PDF is lacking some features :
using Plots; plotlyjs()
)IN [...]
and OUT [...]
annotations.I hope there is some easy way to do this. Otherwise I will have to go back to Word and Matlab.
Thank you!
Upvotes: 2
Views: 2766
Reputation: 657
You might want to consider investing some time learning how to use the nbconvert tool that comes with jupyter notebook. It supports multiple output formats including PDF and also supports custom templates. For example see this older post for an example of hiding code input and only showing output.
Upvotes: 0