matplotlib --> r`$...$`
文档中介绍的很详细:https://matplotlib.org/tutorials/text/mathtext.html
matplotlib Tutoials --> Text --> Writing mathematical expressionsr
1 plt.title(r'\$100') # 就是要显示$符号时,使用转义字符 2 3 plt.title(r'$\alpha_i > \beta_i$') # 下标: '_' 4 plt.title(r'$\sum_{i=0}^\infty x_i$') # 下标: '_',上标: '^', 无穷: \infty 5 6 plt.title(r'$\frac{3}{4} \binom{3}{4} \stackrel{3}{4}$') # 分数,二项式,堆叠数据 7 plt.title(r'$\frac{5 - \frac{1}{x}}{4}$') # 嵌套 8 plt.title(r'$(\frac{5 - \frac{1}{x}}{4})$') # 括号,too small 9 plt.title(r'$\left(\frac{5 - \frac{1}{x}}{4}\right)$') # 括号,`\left(`, `\right)` 10 11 plt.title(r'$\sqrt{2}$') # 数根,2的开方 12 plt.title(r'$\sqrt[3]{x}$') # 数根,x开3次方 13 14 plt.title(r'$s(t) = \mathcal{A}\mathrm{sin}(2 \omega t)$') # 字体 mathcal: 书写的, mathrm: Roman 15 plt.title(r'$s(t) = \mathcal{A}\sin(2 \omega t)$') # 常用函数的快捷用法 16 plt.title(r'$s(t) = \mathcal{A}\/\sin(2 \omega t)$') # 空格 17 plt.title(r'$\mathfrak{Fraktur}$') 18 19 plt.title(r'$\bar a$') # 音调 20 plt.show()
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步