这是example_scenes.py中的代码
class example(Scene):
def construct(self):
title = TextMobject("This is some \\LaTeX")
basel = TexMobject(
"\\sum_{n=1}^\\infty "
"\\frac{1}{n^2} = \\frac{\\pi^2}{6}"
)
VGroup(title, basel).arrange_submobjects(DOWN)
self.play(
Write(title),
FadeInFrom(basel, UP),
)
self.wait()
self.play(
FadeOutAndShift(title,