What font does MATLAB use?
108 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
MathWorks Support Team
el 14 de Dic. de 2016
Editada: MathWorks Support Team
el 5 de Abr. de 2023
What font does MATLAB use?
Respuesta aceptada
MathWorks Support Team
el 5 de Abr. de 2023
Editada: MathWorks Support Team
el 5 de Abr. de 2023
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 comentarios
Walter Roberson
el 22 de Abr. de 2021
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
Adam Danz
el 22 de Abr. de 2021
To check the font Matlab is using in r2018a or later, open preferences from the home tab and navigate to MATLAB > Fonts.

Más respuestas (0)
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!