MATLAB: Plot Title Problem

plot title problem

My code
title(filename);
where filename is a variable such as Plot_Dot
I would like the title to be exactly "Plot_Dot"
however, because of the underscore, D is being displayed as a
subscript. How do I avoid that?

Best Answer

title(filename, 'Interpreter','none')