MATLAB: Avoid using latex interpreter in plot titles

MATLABplot

I am trying the following
s = struct('a','a_dot')
plot(1:10,1:10)
title(s.a)
I want to retain the title name as 'a_dot' and avoid the default formatting done by latex interpreter.
Any suggestion on how this can be done?

Best Answer

https://www.mathworks.com/help/matlab/ref/title.html#namevaluepairarguments
Use the 'interpreter', 'none' option to title()
Related Question