Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUG: tikz display anomaly #2232

Open
zhuanvi opened this issue Oct 24, 2024 · 0 comments
Open

BUG: tikz display anomaly #2232

zhuanvi opened this issue Oct 24, 2024 · 0 comments
Labels

Comments

@zhuanvi
Copy link

zhuanvi commented Oct 24, 2024

Code:

from manimlib import *


class Video(Scene):
    
    def construct(self):
        
        txt = r"""
\begin{tikzcd}
    {\mathcal{C}}
    \arrow["K"', from=1-1, to=2-1]
    \arrow[bend left=37, "F" name=U, from=1-1, to=2-2] 
    \arrow[Rightarrow, "\eta" description, 
    shorten <=4pt, pos=0.58, from=U, to=2-1] \\
    {\mathcal{D}}
    \arrow["\mathrm{Lan}_K F"', ""{name=UU, below},
    from=2-1, to=2-2] & {\mathcal{E}}  \\
    {\quad } & {\quad }
    \arrow[phantom, ""{coordinate,name=Z}, 
    from=3-1, to=3-2]
    \arrow["L"', ""{name=DD}, 
     from=2-1, to= 2-2, 
     rounded corners,
    to path={ -- ([yshift=-3ex] \tikztostart.south)
              |- (Z) [pos=1] \tikztonodes
              -| ([yshift=-3ex] \tikztotarget.south)
              -- (\tikztotarget)}] 
    \arrow ["\chi", Rightarrow,  shorten <=1.5pt,
    from=UU, to= DD, yshift=-1ex]
\end{tikzcd}
        """
        
        tex = TexText(txt, template="lualatex",additional_preamble=r"\usepackage{tikz-cd}").set_stroke(RED,width=2)
        self.play(ShowCreation(tex),run_time=10)

Wrong display or Error traceback:
Correct svg file:
5903eb1297ac1b6b

Display image:
Video

Additional context

@zhuanvi zhuanvi added the bug label Oct 24, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant