mnem2tex.m
来自「matlab源代码」· M 代码 · 共 17 行
M
17 行
function mnemo=mnem2tex(mnemi)
% Function substitutes TeX-style mnemonics for input mnemonics (used for
% axis annotationn plots); e.g. DT_S ==> DT\_S
% Written by E. R., May, 6, 2000
% Last updated: E. R., September 20, 2001: Handle case when the correction
% has already been made
% INPUT
% mnemi string or cell with input mnemonic
% OUTPUT
% mnemo string with output mnemonic
% uo=mnem2tex(ui)
mnemo=strrep(mnemi,'\_','_');
mnemo=strrep(mnemo,'_','\_');
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?