📄 show_help4novice.m
字号:
function hmsgh=show_help4novice(index)
% Display message window with help info if the field "experience" of global
% structure S4M is set to -1.
global S4M HELP4NOVICE
hmsgh=[];
if isempty(HELP4NOVICE)
return
end
if S4M.experience < 0
txt=tokens(HELP4NOVICE{index},'\');
CreateMode.WindowStyle='replace';
CreateMode.Interpreter='tex';
hmsgh=msgbox(txt,S4M.name,'help',CreateMode);
% uiwait(hmsgh);
drawnow
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -