필터 지우기
필터 지우기

How to print multiple figures into same pdf?

조회 수: 5 (최근 30일)
sridhar reddy bysani
sridhar reddy bysani 2020년 1월 30일
답변: Richard Quist 2021년 12월 6일
How can i print multiple figures in one pdf file without using Ghostscript . i tried of using .ps format and it's working.
How can i convert from .ps to PDF within MATLAB.

답변 (1개)

Richard Quist
Richard Quist 2021년 12월 6일
In R2021b and later you can use exportgraphics to directly create PDF files containing multiple figures:
% append each of the figures to output.pdf
for i=1:numFigs
exportgraphics(figure(i), 'output.pdf', 'Append', true);
end

카테고리

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