diff --git a/source/ch-latex.ptx b/source/ch-latex.ptx new file mode 100644 index 0000000..efe6328 --- /dev/null +++ b/source/ch-latex.ptx @@ -0,0 +1,121 @@ + + + LaTeX + +

+This chapter is co-authored by Francesca Gandini, ADD +

+
+
+ What Is +

+ XXX stands for YYY. + more commonly known as + ZZZZ. A sample list and links +

+

+

+ Soething + TBIL.org Calculus I video series + + at this YouTube playlist + + was animated entirely by Tien Chih using Manim. +

+
+ +
+ Creating a LaTeX Codespace + +

+ A turn-key repository for creating a Codespace + () for LaTeX is available at + + fragandi/latex-codespace + . Below we provide detailed instructions. If you have some experience with codespaces, +you might be able to follow directly the README in the repo. Otherwise, keep reading! +

+
+ +
+ Hello World! + +

+ Let's run our very first Manim animation. +

+
+ + +

+ Open main.py and look for the line + class HelloWorld(Scene):. +

+
+ + +

+ Open a Terminal and execute the command + manim render -ql main.py HelloWorld. + (See the README file for other options + to render Manim scenes.) +

+
+
+ + +

+ Open the file + media/videos/main/480p15/HelloWorld.mp4 + to view your newly rendered video. +

+
+
+ + +

+ See if you can add these lines to the code so + the video ends by saying My name is YOUR NAME HERE. +

    +
  • +

    + name = MathTex(r"\text{My name is YOUR NAME HERE.}") +

    +
  • +
  • +

    + self.play(Transform(hello, name)) +

    +
  • +
+ Don't forget to re-run + manim render -ql main.py HelloWorld + to update your rendered video. +

+
+
+ + +

+ See if you can make the circle GREEN instead + of PINK. +

+
+
+
+
+ + + + +
diff --git a/source/main.ptx b/source/main.ptx index 6c9b996..b72414c 100644 --- a/source/main.ptx +++ b/source/main.ptx @@ -26,6 +26,7 @@ + Backmatter