manim icon indicating copy to clipboard operation
manim copied to clipboard

Update tex_templates.yml

Open MarkHoo opened this issue 8 months ago • 0 comments

Fix the error that occurs when using Chinese

Motivation

Fix the error that occurs when using Chinese

Proposed changes

  • tex_templates.yml

Test

Code:

from manimlib import *


class Demo(Scene):
    def construct(self):
        tex = Tex("Hello你好World")
        self.play(Write(tex))
        self.wait(5)

Result:

hello

MarkHoo avatar Jun 04 '24 16:06 MarkHoo