setFontForThesis.m 309 B

12345678
  1. function setFontForThesis(hAx, hFig)
  2. fontToUse = 'Helvetica';
  3. set(hAx,'FontSize', 8)
  4. set(findall(hFig,'type','text'),'FontSize',8)
  5. arrayfun(@(x) set(get(x, 'Title'), 'FontSize', 10, 'FontWeight', 'normal'), hAx);
  6. set(hAx,'FontName', fontToUse)
  7. set(findall(hFig,'type','text'),'FontName', fontToUse)
  8. end