我想知道使用 xkcd 的情节中的换行符是如何工作的。如果我使用
import matplotlib.pyplot as plt
#plt.xkcd()
plt.annotate('Testing\nThis\nOut', xy=(0.5, 0.5))
plt.show()
输出符合预期,但没有 xkcding。评论plt.xkcd()
中,“测试”之后的注释消失了。
我在 Mac0SX 上使用端口安装的 python3.3 和 2.7、py33 和 py27-matplotlib 进行了尝试。