MATLAB: Prevent _ from subscripting with suptitle

plotsuptitle

I want to use the suptitle function (or something similar) to put a main title over a number of subplots; however, what I'd like to print has underscores in it.
For the regular title function, this works so that I can keep underscores instead of subscripting. However, this doesn't work with suptitle. Does anyone have any suggestions?
figure(1);
suptitle(trialName, 'Interpreter', 'none');

Best Answer

Store the handle and change the interpreter to 'none'.
h = suptitle('my_super_title');
h.Interpreter = 'none';
See Steven Lord's solution for matlab releases after and including 2018b.