📄 getfontscale.m
字号:
function SCALE = getfontscale()
%GETFONTSCALE Platform dependent code to get font scale.
% SCALE = GETFONTSCALE determines the platform dependent value
% for the SCALE parameter used with the SETFONTS function.
%
% See also SETFONTS
% Jordan Rosenthal, 22-Jun-99
switch upper(computer)
case 'MAC2'
SCALE = 1.4;
otherwise
if isunix
SCALE = 1.2;
else
SCALE = 1;
end
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -