poster
2019-11-24, 21:20
<p>I have a Matlab figure, like:</p>
<pre><code>x=0:0.01:4;
y=sin(x.*x);
plot(x,y);
title('Some title');xlabel('some x-label');ylabel('some y-label');
</code></pre>
<p>I save this figure with <code>saveas(gcf,'myfig','epsc')</code> or manually by using the GUI as a eps vector grapfic. Now I'd like to include it in a Latex file by using <code>\includegraphics</code>. But the problem I have, is that the title and labels are way too small to be read. So how can the size of these labels be increased?</p>
<p><code>textwidth</code> and <code>scale</code> in Latex are not what I mean. They are no solution to this.</p>
<p>Thanks!</p>
More... (https://stackoverflow.com/questions/59017963/adjust-size-of-title-and-axis-labels-in-figure-eps)
<pre><code>x=0:0.01:4;
y=sin(x.*x);
plot(x,y);
title('Some title');xlabel('some x-label');ylabel('some y-label');
</code></pre>
<p>I save this figure with <code>saveas(gcf,'myfig','epsc')</code> or manually by using the GUI as a eps vector grapfic. Now I'd like to include it in a Latex file by using <code>\includegraphics</code>. But the problem I have, is that the title and labels are way too small to be read. So how can the size of these labels be increased?</p>
<p><code>textwidth</code> and <code>scale</code> in Latex are not what I mean. They are no solution to this.</p>
<p>Thanks!</p>
More... (https://stackoverflow.com/questions/59017963/adjust-size-of-title-and-axis-labels-in-figure-eps)