在matplotlib中使用LaTeX

col17t5w  于 2023-04-06  发布在  其他
关注(0)|答案(2)|浏览(161)

我尝试使用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。

zdwk9cvp

zdwk9cvp1#

你需要做的就是在你的文件中添加几行:

import matplotlib.pyplot as plt

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

你有LaTeX字体!
要使a_B_c按您希望的方式工作,您需要执行以下操作:

a_{b_c}

或者B和C将处于同一水平。

jdg4fx2g

jdg4fx2g2#

您可以使用LaTeX函数\textit{a_b_c}来编写普通文本。
参考:https://matplotlib.org/stable/gallery/text_labels_and_annotations/tex_demo.html

相关问题