我有一个想要调整大小然后打印为 PDF 的图形。使用类似的东西
set(hFig, 'PaperUnits', 'centimeters')
set(hFig, 'PaperSize', [x_B x_H]);
只要我不大幅调整图形大小就可以工作。如果我降低高度,那么在某些时候 xlabel 会移出图形。我进行了很多搜索,但只找到了手动调整底层轴对象大小的解决方案
scalefactor = 0.96;
movefactor = 0.82;
hAx = get(gcf,'CurrentAxes');
g = get(hAx,'Position');
% 1=left, 2=bottom, 3=width, 4=height
g(2) = g(2) + (1-movefactor)/2*g(4);
g(4) = scalefactor*g(4);
set(hAx,'Position',g);
我不喜欢这种方法,因为我必须手动调整这两个因素。
在打印之前,我将所有文本对象的“解释器”设置为“乳胶”(如果有问题的话)。打印是使用实现的
print(hFig, '-dpdf', '-loose', 'test.pdf');
我希望通过使用'-loose'来放松边界框。非常感谢任何帮助!
编辑:似乎解释器(none,tex,latex)确实在其中发挥了作用。我在这里受到这篇文章的启发(http://stackoverflow.com/questions/5150802/how-to-save-plot-into-pdf-without-large-margin-around)并提出了这个解决方案:
tightInset = get(gca, 'TightInset');
position(1) = tightInset(1);
position(3) = 1 - tightInset(1) - tightInset(3);
if strcmpi(x_Interpreter,'latex')
position(2) = tightInset(2)+ 1*tightInset(4);
position(4) = 1 - tightInset(2) - 2*tightInset(4);
else
position(2) = tightInset(2)+ 0*tightInset(4);
position(4) = 1 - tightInset(2) - 1*tightInset(4);
end
set(gca, 'Position', position);