无法将MATLAB y轴转换为乳胶格式

时间:2019-01-21 18:01:45

标签: matlab label latex yaxis

我最近开始使用MATLAB进行一些原型设计。我喜欢用乳胶字体制作轴,因为它与我的其余部分一致。我使用了以下代码:

figure()
plot(t, y(:, 1), t, y1, '--r')
legend('Transfer Function', 'State Space', 'Interpreter', 'latex');
xlabel('Time, \textit{t} (s)', 'Interpreter', 'latex');
ylabel('%MeOH in Distillate, \textit{X_D} (%)', 'Interpreter', 'latex');

这样做,我得到了乳胶格式的x轴和图例。但是,我的y轴不是乳胶格式。.我想知道为什么会这样。

enter image description here

谢谢!

1 个答案:

答案 0 :(得分:3)

您弄乱了一些LaTeX语法。查看突出显示的更改:

ylabel('\%MeOH in Distillate, \textit{$X_D$} (\%)', 'Interpreter', 'latex');
%       ^                             ^   ^   ^

output