import matplotlib.pyplot as plt
# 财务管理发展史的关键节点
nodes = {
"19世纪末": "财务管理学科诞生",
"20世纪中期": "金融市场逐步完善",
"20世纪后期": "吸收自然科学和社会科学成果",
"21世纪初": "数字化财务管理兴起"
}
# 创建思维导图
fig, ax = plt.subplots(figsize=(10, 6))
ax.set_title("财务管理发展史思维导图", fontsize=16)
ax.set_xlim(0, 10)
ax.set_ylim(0, 10)
# 绘制节点
for i, (time, event) in enumerate(nodes.items()):
ax.text(i*2, 8, time, fontsize=12, ha='center')
ax.text(i*2, 7, event, fontsize=12, ha='center')
# 添加箭头
for i in range(len(nodes)-1):
ax.annotate("", xy=(i*2, 7.5), xytext=(i*2+2, 7.5), arrowprops=dict(arrowstyle='->'))
plt.axis('off')
plt.show()