6

我最近不得不重新安装我的操作系统(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;

坏图片:http: //imageshack.us/photo/my-images/708/trial1u.png/

好图:http: //imageshack.us/photo/my-images/87/trial2.png/

4

2 回答 2

3

我认为问题不在于字体,而在于 NVIDIA 的 DPI 设置。从这个关于如何在 Ubuntu linux 中修复 MATLAB 小图形和小字体的链接:

为了设置您的显示 DPI 设置,您需要将以下行添加到“设备”部分的 xorg.conf 文件中:

Option "UseEdidDpi"   "false"
Option "Dpi"          "92 x 92"

如果您是 linux 新手,您可以通过以下过程完成此操作:

  • 通过转到 Applications -> Accessories -> Terminal 启动终端窗口
  • 键入此内容并按 Enter:sudo gedit /etc/X11/xorg.conf
  • 在文件的“设备”部分添加上述两行
  • 保存,重启电脑

如果不是这种情况,请尝试关注此线程

于 2012-10-30T23:16:27.560 回答
1

我安装了xfonts-100dpixfonts-75dpi. 然后注销并登录。

It helped me perfectly with this issue in Linux Mint Petra. I did not try it in Ubuntu.

于 2014-05-19T12:28:59.953 回答