Create a PDF document from Matlab?

160 vues (au cours des 30 derniers jours)
A
A le 4 Mar 2016
Commenté : Walter Roberson le 20 Oct 2024
Hi guys,
With results calculated and plotted in matlab, I would love to generate a beautiful print-friendly PDF which pops open?
Is this a possibility?
Thanks!

Réponses (2)

Ahmet Cecen
Ahmet Cecen le 4 Mar 2016
publish('myscript.m','pdf');
For reference:
  9 commentaires
A
A le 5 Mar 2016
Modifié(e) : A le 5 Mar 2016
Is there not a way for me to manually edit or change the way the Publish function works? And just remove that bit where it adds that watermark?
Or is there any other way to create a customized PDF output of my figure with text and other things?
Thanks
Thanks
Ahmet Cecen
Ahmet Cecen le 5 Mar 2016
Here is another very round about and much harder way of doing it as you seem to be sincerly hating advertising for MATLAB.
1) Download and Install Jupyter notebook and Python.
2) Either install the Jupyter MATLAB connector or use the official MATLAB engine for Python.
3) Write your script in Jupyter, and then you can compile it as a PDF without the watermarks.

Connectez-vous pour commenter.


kajin
kajin le 20 Oct 2024
εημλζφδμωξ how can write in matlab
  1 commentaire
Walter Roberson
Walter Roberson le 20 Oct 2024
You can write that as
thisline = 'εημλζφδμωξ';
You can, for example,
text(0.5, 0.4, thisline, 'interpreter', 'none')
But if you need latex then you would have to use something like
thislinelatex = '$\varepsilon\eta\mu\lambda\zeta\varphi\delta\mu\omega\xi$';
text(0.5, 0.5, thislinelatex, 'interpreter', 'latex')

Connectez-vous pour commenter.

Catégories

En savoir plus sur Integration with Online Platforms dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by