matlab2tikz:tikz 图中 Axis/Tick 标签和 Legend 中的字体错误

matlab2tikz:tikz 图中 Axis/Tick 标签和 Legend 中的字体错误

我在 Linux 64 位机器上使用 Matlab 2016b。

我在 Matlab 中有下图:

matlab图

使用脚本,我对图形文本进行了一些更改,然后调用matlab2tikz函数。该脚本如下所示。

%% Script to modify text properties and call matlab2tikz
openfig('example.fig')
hfig = gcf;
haxis = gca;

haxis.XLabel.String = 'XLABEL (x 1000)'; 
haxis.XLabel.FontName = 'Lucida Sans Typewriter';
haxis.YLabel.String = 'YLABEL (30 runs)'; 
haxis.YLabel.FontName = 'Lucida Sans Typewriter';

% change tick label fonts
haxis.FontName = 'Lucida Sans Typewriter';
haxis.Legend.FontName = 'Lucida Sans Typewriter';
haxis.XTickLabel = {'2','4','6','8'};
matlab2tikz('example.tex','width','\figurewidth');
close all

当我将其包含ex.tex在 Latex 文件中时,生成的 pgfplot 具有

  1. 错误的字体

  2. 错误的 x-tick 标签,

如截图所示:

pgflot 图

有人能告诉我我在这里做错了什么吗?

相关内容