Intro
How the post pipeline handles LaTeX, Manim animations, and interactive components.
This post is a quick tour of what diagrams and equations I can render
LaTeX
Inline math, like the energy-momentum relation , flows naturally inside paragraphs. Display equations:
Multi-line aligned equations:
Animated diagrams
I can do Manim diagrams (shoutout 3blue1brown):
The full scene is just a Python class:
from manim import Circle, Create, ReplacementTransform, Scene, Square
class CircleToSquare(Scene):
def construct(self):
circle = Circle(radius=1.5).set_fill(opacity=0.4)
square = Square(side_length=3).set_fill(opacity=0.4)
self.play(Create(circle))
self.play(ReplacementTransform(circle, square))
self.wait(1)