Multiple Figures to PDF's
218 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jennifer
el 16 de Sept. de 2011
Respondida: Nikhil Sapre
el 10 de Nov. de 2021
Hey all,
I'm wondering if there is a way to save multiple figures to a single PDF. I'd like to be able to plot multiple plots first, and then save them all simultaneously to a pdf that appends them all - so I have a single pdf with multiple pages. Is this possible?
p.s. I have done this in the past with some code, but it's quite old and sluggish, I'm wondering if there is a maltab integrated command or series of commands for this.
0 comentarios
Respuesta aceptada
Más respuestas (2)
Oliver Woodford
el 17 de Sept. de 2011
Export_fig has an -append option which you can use to save multiple figures to the same PDF. However, this becomes slower the larger the PDF becomes.
Alternatively you can save the figures to separate PDFs (using print or export_fig), then concatenate them all into one PDF using append_pdfs. This is faster when saving many figures.
2 comentarios
Carlo antonini
el 5 de Feb. de 2018
I used Export_fig to a PDF file with the -append option... it works as promised, that means very good! Just add a first figure with "set(gca,'visible','off')" and some explanations using text(x,y,'text), then you'll have a presentation in PDF format ready to be sent via mail
Nabin Prajapati
el 28 de En. de 2021
Hi Carlo,
im facing similar problem.. could you kindly post your code here, how did you export all figure in one pd?
Greets
Fangjun Jiang
el 16 de Sept. de 2011
You could use print() to print each figure into a .pdf file and then use a third party tool http://www.pdf995.com/ to combine them.
0 comentarios
Ver también
Categorías
Más información sobre Printing and Saving en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!