我最近不得不重新安装我的操作系统(Ubuntu)。唯一不同的是我将 Matlab 安装在一个单独的分区上,而不是 Ubuntu 主分区上。重新安装后,我的绘图中的字体不再可配置。例如,如果我要求标题字体加粗,它不会发生。我在我的计算机上运行了下面的示例代码,然后在我同事的计算机上运行了 2 个结果。这不是代码的问题;而是在 Matlab 的设置中。有人可以告诉我我需要更改哪些设置吗?在此先感谢您的帮助。
问候,
萨米特。
x1=-pi:.1:pi;
x2=-pi:pi/10:pi;
y1=sin(x1);
y2=tan(sin(x2)) - sin(tan(x2));
[AX,H1,H2]=plotyy(x1,y1,x2,y2);
xlabel ('Time (hh:mm)');
ylabel (AX(1), 'Plot1');
ylabel (AX(2), 'Plot2');
axes(AX(2))
set(H1,'linestyle','none','marker','.');
set(H2,'linestyle','none','marker','.');
title('Plot Title','FontWeight','bold');
set(gcf, 'Visible', 'off');
[legh, objh] = legend([H1 H2],'Plot1', 'Plot2','location','Best');
set(legend,'FontSize',8);
print -dpng Trial.png;