dvi の変換エラーのため、Manim で Latex を使用できません。これに関する他の投稿を見て、コードを変更しましたが、まだ動作しません。これが私のコードです: from manim import *
class dvi_error(Scene): defconstruct(self): t = MathTex(r"$y = x^2$") t.scale(2) self.add(t) self.wait()
次のエラーメッセージが表示されます:
INFO $y = x^2$ を media\Tex\88663fadf5843031.tex に書き込んでいます tex_file_writing.py:107 ERROR LaTeX コンパイル エラー: LaTeX エラー: ファイル `standalone.cls' が見つかりません。 tex_file_writing.py:312 ERROR エラーのコンテキスト: tex_file_writing.py:346 -> \documentclass[preview]{standalone}
\usepackage[english]{babel}
\usepackage{amsmath}
INFO You do not have package standalone.cls installed. tex_file_writing.py:356 INFO Install standalone.cls it using your LaTeX package manager, or check for typos. tex_file_writing.py:356 ERROR LaTeX compilation error: Emergency stop. tex_file_writing.py:312
ERROR Context of error: tex_file_writing.py:346 -> \documentclass[preview]{standalone}
\usepackage[english]{babel}
\usepackage{amsmath}
[...] ValueError: DVI への変換中に LaTeX エラーが発生しました。上記のログ出力またはログ ファイルを参照してください: media\Tex\88663fadf5843031.log
LaTeX を正常にインストールしました (コマンド プロンプトにバージョンが表示され、数式要素を含むテキストがなくても動作します)。また、MathTex を Tex に置き換えたり、ドル記号を 1 つではなく 2 つ使用したりしてみましたが、何も動作しません。どうすればよいでしょうか。