manim-TextMobject 换行 在需要换行的地方插入"\\\"即可。 class example(Scene): def construct(self): text=TextMobject('This is the first raw. \\\ And this is the second raw.') self.play(Write(text),run_time=5) self.wait()