Figure printing size and printing in latex

8 ビュー (過去 30 日間)
Diana
Diana 2018 年 1 月 17 日
コメント済み: Elias Gule 2018 年 1 月 17 日
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 件のコメント
Diana
Diana 2018 年 1 月 17 日
I go to edit:Figure Prop. then More Prop. After PaperPosition and I set width and height to 650 and 500 (units-points)... but I'm not getting the same size
Jan
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
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 件のコメント
Diana
Diana 2018 年 1 月 17 日
hi =get(gcf); >> set(hi, 'PaperUnits', 'cm', 'PaperSize', [10, 15]); Error using set Conversion to double from struct is not possible. I tried the bove and gave the above error
Elias Gule
Elias Gule 2018 年 1 月 17 日
@Diana, please change
hi = get(gcf);
to
hi = gcf;

サインインしてコメントする。

カテゴリ

Help Center および File ExchangePrinting and Saving についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by