Multiple Figures to PDF's
226 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
更多回答(2 个)
Oliver Woodford
2011-9-17
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 个评论
Carlo antonini
2018-2-5
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
2021-1-28
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
2011-9-16
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Printing and Saving 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!