MATLAB: How to change the default text interpreter for a plot axis label in R2015a

defaulttextinterpreterMATLAB

In previous versions on Matlab, I could set the default text interpreter to 'none' to avoid undesired subscripts in my plots by using this line in my startup file
set(0, 'DefaultTextInterpreter', 'none')
In 2015a this does not effect axis labels or legends. I can now effect legends with a separate command in my startup file using
set(0, 'DefaultLegendInterpreter', 'none')
And I can effect axis labels locally in a plotting script
set(gca, 'TickLabelInterpreter', 'none')
But how do I effect axis labels on a global level?

Best Answer

Try
set(groot, 'DefaultAxesTickLabelInterpreter', 'none')