如何使用Matlab LaTex解释器生成Unicode字符

时间:2014-09-28 10:41:01

标签: matlab unicode utf-8 latex tex

我有以下代码行

ylabel('Średnia wartość parametru $f_{max}$','Interpreter','latex');

并希望将其用作我的情节的标签。不幸的是,我真正得到的是:

Warning: Unable to interpret LaTeX string

如果我删除这样的Unicode字符:

ylabel('Srednia wartosc parametru $f_{max}$','Interpreter','latex');

它没有问题。

那么我怎么能让Matlab打印那些不幸的角色?

1 个答案:

答案 0 :(得分:1)

使用LaTeX representations表示这些字符:\'S\'s等。不要忘记在字符串中复制引号:

ylabel('\''Srednia warto\''s\''c parametru $f_{max}$','Interpreter','latex')