How to change default title font in tiled layout

조회 수: 17 (최근 30일)
Malte Andersen
Malte Andersen 2020년 2월 24일
댓글: Axel Heußer 2022년 6월 8일
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.

채택된 답변

Samatha Aleti
Samatha Aleti 2020년 2월 28일
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!
  댓글 수: 2
Robert Cooper
Robert Cooper 2021년 6월 10일
A follow-up on this question: tiledlayout does not seem to respect any of the default figure settings. I use the following settings on all my figures, to make them more readable. This works fine for normal figures or subplots. However, with tiledlayout, the individual plots do not follow my set default line widths and font sizes.
figure('DefaultLineLineWidth',3,...
'DefaultAxesLineWidth',3,...
'DefaultAxesFontSize',20,...
'DefaultTextFontSize',20,...
'DefaultLineMarkerSize',25)
Axel Heußer
Axel Heußer 2022년 6월 8일
Hi Samatha,
I'm using R2022a and the interpreter for tiledlayout is still unaffected by the default setting - which I switched to latex with help of this Q&A.
Can you please open or re-open the respective ticket to this issue? I'd appreciate that.
Thanks & Regards, Axel

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Axes Appearance에 대해 자세히 알아보기

태그

제품


릴리스

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by