Figure printing size and printing in latex
조회 수: 8 (최근 30일)
이전 댓글 표시
I have multiple of Matlab figures and I need all the figures to have the same size when I save them as Pdf but I can't make them equal, is there a way just to copy the sixe configuration from figure to another. Thanks in advance
댓글 수: 4
Jan
2018년 1월 17일
The same size of what? Remember that the readers do not have the faintest idea about what you are doing.
답변 (1개)
Jan
2018년 1월 17일
If you create a PDF, not the 'Position' of the figure matters, but the 'PaperPosition' and 'PaperUnits'.
If you have the handles of all figures in one vector, you can set the properties in one command:
fig(1) = figure;
fig(2) = figure;
...
set(fig, 'PaperUnits', 'cm', 'PaperSize', [10, 15]);
댓글 수: 3
참고 항목
카테고리
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!