美文网首页
更改MATLAB中Live Editor中的字体

更改MATLAB中Live Editor中的字体

作者: LIANG静闲 | 来源:发表于2022-04-25 22:15 被阅读0次

MATLAB中Live Editor中的字体需要通过编程的方式指定。

settings函数Introduced in R2018a.

下面表示Live Editor中正文文本(normal)默认的字体为SansSerif。

s = settings;
s.matlab.fonts.editor.normal.Name

ans = 

  Setting 'matlab.fonts.editor.normal.Name' with properties:

       ActiveValue: 'SansSerif'
    TemporaryValue: <no value>
     PersonalValue: <no value>
      FactoryValue: 'SansSerif'

更改字体需要更改PersonalValue的内容。如下所示。

s.matlab.fonts.editor.normal.Name.PersonalValue = '宋体';
s.matlab.fonts.editor.title.Name.PersonalValue='宋体';
s.matlab.fonts.editor.code.Name.PersonalValue='Source Han Serif CN';

清除更改

clearPersonalValue(s.matlab.fonts.editor.normal.Name)

相关文章

网友评论

      本文标题:更改MATLAB中Live Editor中的字体

      本文链接:https://www.haomeiwen.com/subject/owmqyrtx.html