manimのメモ

manim
memo
manim
Author

Masaya Kameyama

Published

March 10, 2022

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 = Tex('Hello 你好 \\LaTeX 日本語でおk', tex_template=TexTemplateLibrary.ctex, font_size=144)
        self.add(tex)
Back to top