[Solved] Trouble changing font of plot titles?

26 次查看(过去 30 天)
Hi folks,
I'm trying to unify the fonts I'm using in a paper, and am coming to the conclusion that I'm missing something important about how fonts work in MATLAB. I can get the ticks and legends to be in my desired font, but not the titles and axis labels.
Behold:
%% Broken font settings, minimum working example
set(0, 'DefaultAxesFontName', 'Highway Gothic')
x=1:.01:2;
y=sin(x);
figure
plot(x, y)
title("This should be in Highway Gothic", 'FontName', 'Highway Gothic')
ylabel("I can change font size...", 'FontName', 'Highway Gothic', 'FontSize', 20)
xlabel("...but not typeface?", 'FontName', 'Highway Gothic')
legend('why does this work?')
This produces the following:
...and, to top it off, something I did seems to have changed elements of my MATLAB interface (the file list in the "Current Folder" pane, the list of variables in the workspace, and the text of dialog boxes) to Highway Gothic. I don't mind this much because it's a good font, but....wat?
  2 个评论
Walter Roberson
Walter Roberson 2020-11-12
I notice that the default Interpreter property for title and labels is 'tex', which can interfere with getting the font you expect. I suggest you add 'Interpreter', 'none' to the calls.

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2020-11-12
I notice that the default Interpreter property for title and labels is 'tex', which can interfere with getting the font you expect. I suggest you add 'Interpreter', 'none' to the calls.
[Copied from comment as it turned out to be the answer]

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Axis Labels 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by