Skip to content

Commit eadeb3e

Browse files
author
Aron Fischer
committed
always black
1 parent 2d6f2d0 commit eadeb3e

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

example_scenes/advanced_tex_fonts.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ def FrenchCursive(*tex_strings, **kwargs):
2222

2323

2424
class TexFontTemplateManual(Scene):
25-
""" An example scene that uses a manually defined TexTemplate() object to create
26-
LaTeX output in French Cursive font """
25+
"""An example scene that uses a manually defined TexTemplate() object to create
26+
LaTeX output in French Cursive font"""
27+
2728
def construct(self):
2829
self.add(Tex("Tex Font Example").to_edge(UL))
2930
self.play(ShowCreation(FrenchCursive("$f: A \\longrightarrow B$").shift(UP)))
@@ -45,8 +46,9 @@ def construct(self):
4546

4647

4748
class TexFontTemplateLibrary(Scene):
48-
""" An example scene that uses TexTemplate objects from the TexFontTemplates collection
49-
to create sample LaTeX output in every font that will compile on the local system """
49+
"""An example scene that uses TexTemplate objects from the TexFontTemplates collection
50+
to create sample LaTeX output in every font that will compile on the local system"""
51+
5052
def construct(self):
5153
def write_one_line(template):
5254
x = Tex(template.description, tex_template=template).shift(UP)

0 commit comments

Comments
 (0)