在 Python 中使用 LaTeX 时出现 UnicodeDecodeError

在 Python 中使用 LaTeX 时出现 UnicodeDecodeError

当尝试运行包含为 LaTeX 编写的文本的代码时,我收到错误。

UnicodeDecodeError: 'charmap' codec can't decode byte 0xa1 in position 1281: character maps to <undefined>

我用拉脱维亚语编写文本,因此其中包含“奇怪”的字符,例如 ā、ī 和 š。我该如何解决这个问题?

代码(我正在使用 manim 库):

from manim import *


class Definition(Scene):
    def construct(self):
        ddefin = Tex(r'Šis teksts ir rakstīts Latviešu valodā.')
        self.add(ddefin)

相关内容