Hi,
I'm creating figures for an article. I want to create my figure and save an .eps file, which I did with sucess. Here is a sample of my code.
figure
a=subplot('Position',[xstart+3*xspace+3*xsize zstart xsize zsize])
hold off
image(y11)
title('Intensity','FontSize',17)
set(a,'YTick',[],'XTick',[]);
text(textxp,textyp,'(d)','FontSize',17,'color','w')
My issue is having always the same size of letters in my image as in my article. The article is write on overleaf. I was wondering if there was a way in matlab when I create figure to have this figure have a certain size. If I could something like figure(2.6inch width), than I could call this image in my latex and insert it as 2.6inch wide and the letters would keep the proper size.
Is it clear?
Thank you for any help.
RMT