MATLAB: How to change default title font in tiled layout

MATLABplotsubplot

I'm trying to change the font of a series of plots in a tiled layout to a LaTeX font. I've placed these in the startup.m file already:
set(groot,'defaulttextinterpreter','latex');
set(groot,'defaultLegendInterpreter','latex');
set(groot,'defaultAxesTickLabelInterpreter','latex');
In normal plots, the title is changed to a LaTeX font but when I make plots in a tiled layout, the overall title for all of the subplots are still not in a LaTeX font.
I feel like I just need to add a single line to that piece of code to make it work but I can't figure out what the title for a tiled layout is called. Hope you can help. I've attached a photo of what it looks like right now.

Best Answer

Hi,
The issue when changing default "Interpreter" for "tiledlayout" has been brought to the notice of our developers. They will investigate the matter further.
As a workaround, you can do either of follows:
1) Use “subplots” instead of “tiledlayout” to change the default Interpreter to “Latex
(or)
2) Change the Interpreter separately as follows:
t = tiledlayout(2,2);
plot(1:4,2:2:8);
txt = title(t,'Title with latex character $\frac{1}{2}$');
txt.Interpreter= 'latex';
Hope this helps!
Related Question