Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions example_scenes/customtex.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
from manim import *

# Test cases:
# 1. manim customtex.py ExampleFileScene -pl
# --> should fail, because \vv is not defined
#
# 2. manim customtex.py ExampleFileScene --tex_template custom_template.tex -pl
# --> should succeed as custom template includes package esvect (which defines \vv)
#
# 3. manim customtex.py ExampleClassScene -pl
# --> should succeed as the package esvect is included in template object

class ExampleFileScene(Scene):
class TexTemplateFromCLI(Scene):
"""This scene uses a custom TexTemplate file.
The path of the TexTemplate _must_ be passed with the command line
argument `--tex_template <path to template>`.
For this scene, you can use the custom_template.tex file next to it.
This scene will fail to render if a tex_template.tex that doesn't
import esvect is passed, and will throw a LaTeX error in that case.
"""
def construct(self):
text = TexMobject(r"\vv{vb}")
#text=TextMobject(r"$\vv{vb}$")
self.play(Write(text))


class ExampleClassScene(Scene):
class InCodeTexTemplate(Scene):
"""This example scene demonstrates how to modify the tex template
for a particular scene from the code for the scene itself.
"""
def construct(self):
tpl = TexTemplate()
tpl.append_package(["esvect", ["f"]])
Expand Down