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 :
- Hide code cell. ( I don't want to show the code I used to generate those graphs. )
- Hide output of code cell. ( I don't want to show output of
using Plots; plotlyjs()
) - Hide the
IN [...]
andOUT [...]
annotations. - Increase space size between lines.
I hope there is some easy way to do this. Otherwise I will have to go back to Word and Matlab.
Thank you!