| Description |
Usage: [Args=]savefigure(name[,property,value,...])
properties and default value
'Dpi',300,
'Size',[3.3 2.5] %inches
'FontSize',0 %fontsize multiplier
'MinFontSize',8 %minimum fontsize in pt
'LineWidth',.5 %linewidth multiplier
'MinLineWidth',.5 %minimum linewidth in pt
'MarkerSize',.5 %markersize multiplier
'MinMarkerSize',3 %minimum MarkerSize in pt
'Margins','auto' %Left,Right,Top,Bottom - can be used to set margins (relative units)
%or a multiplier to the tight-inset used for auto margins.
'PrintOptions','-dpng'
AGU journals: Figures can be 20 picas wide or 41 picas wide and 58 picas deep. That's
3.3 inches, 6.83, and 9.66.
(C) Aslak Grinsted 2002-2004
-------------------
EXAMPLE:
close all;
semilogy(chemyear(:,1),chemyear(:,4));
xlabel('x');
ylabel('y');
savefigure('test','s',[3.3 2.5],'po','-deps')
Note: the zip package includes an version that works in older versions of matlab. |