What is the quickest way to disable TeX markup from displaying in messages in a waitbar
? I was expecting an option like
'Interpreter', 'none', ...
The Interpreter
property is not available for figures I believe (waitbar
creates a figure object), but you can apply it afterward to the waitbar message:
h=waitbar(x,message);
set(findall(h,'type','text'),'Interpreter','none');
You could also escape the problematic characters, but that would be a lot more complicated.
You can also set the global Tex Interpreter to None
, it applies to waitbars as well.
set(0, 'DefaulttextInterpreter', 'none');
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With