更改MATLAB中Live Editor中的字体

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: 
     PersonalValue: 
      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中的字体)