Sage + Latex - 如何更改轴标签的字体?

Sage + Latex - 如何更改轴标签的字体?

我用智者和 LaTeX,当我这样做时:

\begin{sagesilent}
  p2 = list_plot(zip(H, f(5)), True, color='blue', axes_labels=[u'$H,$ км',u'$\mu, c$'])
  p2.fontsize(14)
\end{sagesilent}

运行后sage DIPLOM.sagetex.sage我得到了这个:

/usr/lib/sagemath/local/lib/python2.7/site-packages/matplotlib/mathtext.py:887: MathTextWarning: Font 'default' does not have a glyph for '\u043a' [U43a]
  MathTextWarning)

那么我怎样才能更改字体名称以便不仅使用拉丁符号?

相关内容