Setting Matlab figure default font

less than 1 minute read

Published:

This is a post showing you how to set the default MATLAB font

To set the default font for your MATLAB font, you just need to set the following:

 set(groot,'defaultTextInterpreter','latex');
 set(groot, 'defaultAxesTickLabelInterpreter','latex');
 set(groot, 'defaultLegendInterpreter','latex');