here is a small program that will issue a warning in R2008b. I don't
understand why, because I chose 'none' as 'Interpreter'.
Warning: incomplete command in TeX text string:
'Luft40ms_D40_25mm2s_Sirene_250Hz_'
> In legendcolorbarlayout>doLayoutCB at 283
In title at 46
In title at 23
In title_bug at 15
The isolated code line is running without warning:
>> title('Luft40ms_D40_25mm2s_Sirene_250Hz_', 'Interpreter', 'none')
Where is the difference? Any hints?
Thanks!
Armin
you should report this bug...
% the bug
% - 1. legend
% - 2. title
s='ERROR_';
plot(1:2);
legend('error');
title(s,'interpreter','none');
%{
Warning: incomplete command in TeX text string:
'ERROR_'
> In legendcolorbarlayout>doLayoutCB at 283
In title at 46
In title at 23
%}
pause;
% a workaround
% - 1. title
% - 2. legend
clf;
s='OK_';
plot(1:2);
title(s,'interpreter','none');
legend('ok');
us
> you should report this bug...
Yes, right. Done.
Cheers,
Armin