我尝试使用LaTeX在Python中创建一个带标题的表。
以下代码创建一个带标题的图形,因为我想要标题。
import matplotlib.pyplot as plt
s1="a_b_c"
s2=r'''\begin{tabular}{ c | c | c } & 1 & 2 \\\hline 1 & 1 & 2 \\\hline 2 & 2 & 4 \end{tabular}'''
plt.figure(figsize=(4,5))
ax=plt.subplot2grid((1,1),(0,0))
ax.text(0.5,0.8,s1,ha="center",va="center",transform=ax.transAxes)
plt.show()
但是现在我在上面的代码中添加了两行,这使得标题错误。
import matplotlib.pyplot as plt
s1="a_b_c"
s2=r'''\begin{tabular}{ c | c | c } & 1 & 2 \\\hline 1 & 1 & 2 \\\hline 2 & 2 & 4 \end{tabular}'''
plt.figure(figsize=(4,5))
ax=plt.subplot2grid((1,1),(0,0))
ax.text(0.5,0.8,s1,ha="center",va="center",transform=ax.transAxes)
###
plt.rc('text', usetex=True)
ax.text(0.3,0.2,s2,ha="left",va="bottom",transform=ax.transAxes,size=20)
###
plt.show()
如何同时使用LaTeX字体和常用的python字体?当然,不修改字符串s1和s2。
答案 0 :(得分:4)
您需要做的就是在文件中添加几行:
import matplotlib.pyplot as plt
plt.rc('text', usetex=True)
plt.rc('font', family='serif')
你有LaTeX字体!
要让a_b_c像你想要的那样工作,你需要这样做:
a_{b_c}
或者b和c将处于同一水平。