Subtitle
Plot title in bold and larger size
using Matlab syntax: FontWeight, FontAngle,..
plot([1,4,3,6,12,20],'.-')
title('Prediction','FontWeight','bold','fontsize',16); % title bold and size 16
xlabel('time','FontAngle','italic'); % write xlabel in italic
ylabel('intensity','FontWeight','bold'); % write ylabel in bold
How to plot title not in bold?
Update 2016: Matlab plots titles always in bold. To remove bold in titles, add the option: 'FontWeight','Normal'
title('Title not in bold','FontWeight','Normal')
How to print two lines: title & subtitle?
use a cell array:
title( {'Title';'subtitle'} )
text properties can be added by \tex syntax: \bf for bold; \it for italic; ...
Example
plot([1,4,3,6,11.5,10],'.-')
title({'{\bf\fontsize{14} Experimental observation \alpha_{23} X^{12}}'; '{\itE.coli} species '},'FontWeight','Normal')