?? matlab_marker_to_latex.m
字號(hào):
function tex_out = matlab_marker_to_latex(mkr_in)
if strcmp(mkr_in, '+')
tex_out = '+';
elseif strcmp(mkr_in, 'o')
tex_out = '$\circ$';
elseif strcmp(mkr_in, '*')
tex_out = '$\ast$';
elseif strcmp(mkr_in, '.')
tex_out = '$\bullet$';
elseif strcmp(mkr_in, 'x')
tex_out = '$\times$';
elseif strcmp(mkr_in, 'square')
tex_out = '$\Box$';
elseif strcmp(mkr_in, 'diamond')
tex_out = '$\Diamond$';
elseif strcmp(mkr_in, 'v')
tex_out = '$\nabla$';
elseif strcmp(mkr_in, '^')
tex_out = '$\triangle$';
elseif strcmp(mkr_in, '>')
tex_out = '$\triangleright$';
elseif strcmp(mkr_in, '<')
tex_out = '$\triangleleft$';
elseif strcmp(mkr_in, 'pentagram')
tex_out = '$\star$';
elseif strcmp(mkr_in, 'hexgram')
tex_out = '$\bowtie$';
else
tex_out = '$\otimes$';
end
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -