gpt4 book ai didi

python - 在 matplotlib 中对齐 TeX 方程

转载 作者:太空宇宙 更新时间:2023-11-03 15:26:26 25 4
gpt4 key购买 nike

我有以下行在我的 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,但我不太正确。

最佳答案

使用eqnarray。您的代码的简化版本:

#!/usr/bin/python
import matplotlib.pyplot as plt
from matplotlib import rc

rc('text', usetex=True)
rc('font', family='serif')

r = 1
v = 2
i = 3

plt.plot([1,2,3],[2,3,4],'ro-')

plt.text(2,2,r"\begin{eqnarray*}R_L&= 0\\ V_2&= 1\\ I_2&= 2\end{eqnarray*}")

#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()

为了让它工作,我必须安装 dvipng(如这里所建议的那样,http://matplotlib.sourceforge.net/users/usetex.html)

关于python - 在 matplotlib 中对齐 TeX 方程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6068827/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com