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!