MATLAB: How to change one part of the string to NOT italic font

italicMATLABstringsyntaxxlable

i have this code:
xlhand = get(gca,'xlabel');set(xlhand,'string','string and not italic',...
'fontsize',15,'FontAngle','italic');
i need the text 'not italic' to be normal how can i do that?

Best Answer

you can do something like this
>> title('this text is {\bfbold} this text is {\ititalizized}')