mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
newline should not separate \onslide tex parts
This commit is contained in:
parent
fddea18da5
commit
086c5b1fa3
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ def tex_to_dvi(tex_file):
|
||||||
return result
|
return result
|
||||||
|
|
||||||
def tex_expression_list_as_string(expression):
|
def tex_expression_list_as_string(expression):
|
||||||
return "\n".join([
|
return "".join([
|
||||||
"\onslide<%d>{"%count + exp + "}"
|
"\onslide<%d>{"%count + exp + "}"
|
||||||
for count, exp in zip(it.count(1), expression)
|
for count, exp in zip(it.count(1), expression)
|
||||||
])
|
])
|
||||||
|
|
Loading…
Add table
Reference in a new issue