tutorial
実行方法
fileを作成したら以下のコマンドでmp4が作成できる.
manim scene.py
sceneが複数ある場合は選べる.
次のように指定もできる.
manim scene.py CreateCircle
オプションも存在する.
manim -pql scene.py CreateCircle
-pはplay, -qlはlow quality, -qhはhigh quality, -sは最後のframeをpngで出すオプション.
texで日本語を使う方法
from manim import *
class LaTeXTemplateLibrary(Scene):
def construct(self):
= Tex('Hello 你好 \\LaTeX 日本語でおk', tex_template=TexTemplateLibrary.ctex, font_size=144)
tex self.add(tex)