pandas to_latex() methode似乎是将较大的表格转换为 latex 代码的便捷方法。但是,在编写数学模式时,$似乎已被转义。

一个例子:

import pandas as pd
import numpy as np

table=np.asarray([['$x^2$',3]])
df=pd.DataFrame(table[:,1], columns=['value'], index=table[:,0])
print(df.to_latex(encoding='utf-8'))

输出:
\begin{tabular}{ll}
\toprule
{} & value \\
\midrule
\$x\textasciicircum2\$ &     3 \\
\bottomrule
\end{tabular}

有办法防止这种情况发生吗?

最佳答案

是的,方法的转义参数默认设置为True。您可以将其更改为False:

print(df.to_latex(encoding='utf-8', escape=False))

\begin{tabular}{ll}
\toprule
{} & value \\
\midrule
$x^2$ &     3 \\
\bottomrule
\end{tabular}

关于python - Pandas to_latex()退出mathmode,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44260547/

10-12 16:50