Multiple Figures to PDF's

조회 수: 427 (최근 30일)
Jennifer
Jennifer 2011년 9월 16일
답변: Nikhil Sapre 2021년 11월 10일
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.

채택된 답변

Nikhil Sapre
Nikhil Sapre 2021년 11월 10일
Release 2021b now supports exporting to a multipage pdf using the exportgraphics function

추가 답변 (2개)

Oliver Woodford
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
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
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
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.

카테고리

Help CenterFile Exchange에서 Printing and Saving에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by