What font does MATLAB use?

조회 수: 184 (최근 30일)
MathWorks Support Team
MathWorks Support Team 2016년 12월 14일
편집: MathWorks Support Team 2023년 4월 5일
What font does MATLAB use?

채택된 답변

MathWorks Support Team
MathWorks Support Team 2023년 4월 5일
편집: MathWorks Support Team 2023년 4월 5일
There is no specific default font for MATLAB. MATLAB chooses a font to display based on your Java settings.
In order to figure out what font is being used on your machine, please read the following reference:
This will point you towards a specific Java configuration file.  Within this file you should see a line starting with
monospaced.plain.alphabetic=
followed by the name of a font.  This is the font that MATLAB will use.
  댓글 수: 2
Walter Roberson
Walter Roberson 2021년 4월 22일
place_to_look = fullfile(matlabroot, 'sys', 'java', '**', 'fontconfig.properties.src');
dinfo = dir(place_to_look);
if isempty(dinfo)
fprintf('Sorry, I am not smart enough to figure it out for your system\n');
else
fprintf('%s\n', fullfile(dinfo(1).folder, dinfo(1).name));
end
/MATLAB/sys/java/jre/glnxa64/jre/lib/fontconfig.properties.src
Adam Danz
Adam Danz 2021년 4월 22일
To check the font Matlab is using in r2018a or later, open preferences from the home tab and navigate to MATLAB > Fonts.
See the documentation for more info.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

제품


릴리스

R2016a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by