\DJ
我想使用以下代码显示 D 笔划符号 ( ),但失败了。有人能告诉我如何正确显示吗?
如图所示,符号$\mu$
正常但是$\DJ$
没有出现符号。
import matplotlib as mpl
mpl.use("pgf")
pgf_with_custom_preamble = {
"text.usetex": True, # use inline math for ticks
"pgf.rcfonts": False, # don't setup fonts from rc parameters
"pgf.preamble": [
'\\usepackage[utf8]{inputenc}'
'\\usepackage[T1]{fontenc}'
'\\usepackage{tgtermes}'
]
}
mpl.rcParams.update(pgf_with_custom_preamble)
%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt
x = [1,2,3,4,5]
y = [10, 20, 30, 40, 50]
plt.plot(x,y)
plt.xlabel('$\mu$')
plt.title('$\DJ$')