Plot title in bold and larger sizeusing Matlab syntax: FontWeight, FontAngle,..plot([1,4,3,6,12,20],'.-') title('Prediction','FontWeight','bold','fontsize',16); % title bold and size 16xlabel('time','FontAngle','italic'); % write xlabel in italicylabel('intensity','FontWeight','bold'); % write ylabel in boldHow 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') 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') read more http://www.mathworks.com/help/matlab/ref/text-properties.html http://de.mathworks.com/matlabcentral/answers/60100-multiple-font-sizes-in-title-mixture-of-latex-and-english-commands http://de.mathworks.com/matlabcentral/answers/93295-how-do-i-place-a-two-lined-title-x-label-y-label-or-z-label-on-my-plot |
Plot >