Filter löschen
Filter löschen

[Solved] Trouble changing font of plot titles?

26 Ansichten (letzte 30 Tage)
Kristina Collins
Kristina Collins am 12 Nov. 2020
Bearbeitet: Kristina Collins am 12 Nov. 2020
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 Kommentare
Walter Roberson
Walter Roberson am 12 Nov. 2020
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.
Kristina Collins
Kristina Collins am 12 Nov. 2020
That fixed it. Thanks!

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 12 Nov. 2020
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]

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by