julia> y = rand(10);
julia> t = 1:10;
julia> plot(t, y, xlabel = "时间")
GKS: glyph missing from current font: 26102
GKS: glyph missing from current font: 38388
GKS: glyph missing from current font: 26102
GKS: glyph missing from current font: 38388
GKS: glyph missing from current font: 26102
GKS: glyph missing from current font: 38388
GKS: glyph missing from current font: 26102
GKS: glyph missing from current font: 38388
GKS: glyph missing from current font: 26102
GKS: glyph missing from current font: 38388
using Plots
x = 1:10
y = rand(10)
myfont = font(12, "Arial") # Define a custom font
#OR. fontsize is incorrect.
#Plots.default(fontfamily="Arial", fontsize=12)
plot(x, y,
title="My Plot", titlefont=myfont,
xlabel="X-axis", ylabel="Y-axis", guidefont=myfont,
tickfont=myfont,
legendfont=myfont)