python绘图time new rome字体
时间: 2023-08-17 10:06:21 浏览: 165
请将所有字体改为Times+new+roman.doc
您可以使用Python中的Matplotlib库来绘制图形,并设置Time New Rome字体。下面是一个示例代码:
```python
import matplotlib.pyplot as plt
from matplotlib import font_manager
# 设置Time New Rome字体路径
font_path = '<Time New Rome字体路径>'
# 加载字体
prop = font_manager.FontProperties(fname=font_path)
# 创建图形
fig, ax = plt.subplots()
# 绘制图形
x = [1, 2, 3, 4, 5]
y = [10, 8, 6, 4, 2]
ax.plot(x, y)
# 设置x轴和y轴标签及标题
ax
阅读全文