実際に問題を再現できません。その凡例を作成するために使用するコードは次のとおりです。
figure;
plot(randn(10,4))
h = legend(...
'Approximate Model solution M_0 = 1e5', ...
'Full Model solution M_0 = 1e5', ...
'Approximate Model solution E_0 = 1e5', ...
'Full Model solution E_0 = 1e5');
私にとっては、写真に表示される余分なスペースなしでレンダリングされます.
間隔を微調整する必要がある場合は、次のように、Latex を使用して水平方向に負のスペースを追加してみてください。
タイトルの場合:
title('abc\hspace{-1pt}efg','interpreter','latex')
凡例の場合:
warning off MATLAB:tex %Disable a warning cause by the next line ...
h = legend('abc\hspace{-1pt}efg'); %... there may be a cleaner way
set(h,'interpreter','latex');