How can one use the "xcolor" latex package in manim Tex? #1996
Unanswered
Quantum1352
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Maybe manim always set a default color to Tex. But you are using the community version of manim, so I'm not really clear about it. You'd better ask this question on their discord channel or open an issue at ManimCommunity/manim instead of here. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I want to have the labels of the tasks environment in blue. The following is the code I am using. Manim does not produce any errors, but the labels are still in white. Help will be appreciated.
Regards
from manim import *
class OVQ(Scene):
def construct(self):
myTemplate = TexTemplate()
myTemplate.add_to_preamble(r"\usepackage{tasks}")
myTemplate.add_to_preamble(r"\usepackage{xcolor}")
Beta Was this translation helpful? Give feedback.
All reactions