Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 PyX 中制作情节。
获取(在 LaTex 语言中)
\mathrm{a}
你用
\rm{a}
(在 PyX 语言中)。
我想得到(用 LaTex 语言)
\mathbb{a}.
如何用 PyX 语言做到这一点?尝试
\bb{a}
给出错误信息。
您需要通过以下方式启用 LaTeX
text.set(text.LatexRunner)
默认情况下,PyX 使用纯 TeX。