|
For others searching this, to automatize the "_" to "\_" replacement
(e.g. if you have automatic title creation for subplots), and as suptitle doesn't support the same options as title (so you can't add: ...'interpreter','none')
You can use:
suptitle(strrep('title','_','\_'))
Best
Tristan
"Eric Guild" <eric.guild@afit.edu> wrote in message <h5rql5$p9a$1@fred.mathworks.com>...
> Hi all,
> I am trying to put a title on a series of subplots by using the suptitle command. The title is rather long and I need to put it on multiple lines because MATLAB will just continue it on one line and you will not be able to see the whole thing.
>
> Any ideas??
>
> Also, it apparently doesnt like underscores. How do I create an underscore?
>
> Thanks for any help you can give!!!
>
> Eric
|