【发布时间】:2011-08-29 10:57:06
【问题描述】:
我在 matplotlib 图上注释 TeX:
import matplotlib.pyplot as plt
from matplotlib import rc
rc('text', usetex=True)
rc('font', family='serif')
r = 1
v = 2
i = 3
notes = r"\noindent$R_L = {0}\\ V_2 = {1}\\ I_2 = {2}$".format(r, v, i)
plt.annotate(notes, xy=(5,5), xytext=(7,7))
plt.show()
如何使等号相互对齐?我尝试了几种方法,例如\begin{align}、&-placement,但我不太明白。
【问题讨论】:
标签: python math matplotlib tex alignment