TikzCD: tudo está se misturando

TikzCD: tudo está se misturando

Quando tenho uma homotopia entre duas setas, as coisas parecem correr bem:

\documentclass[12pt]{article}
\usepackage{tikz-cd}
\begin{document}
\begin{center}
 \begin{tikzcd} 
A
  \arrow[r, bend left=60, "F" ""{name=a, below}]
  \arrow[r, bend right=60, "G"', ""{name=b}]
 & B
  \arrow[Rightarrow, from=a, to=b, "\Theta"]
 \end{tikzcd}
\end{center}
\end{document}

insira a descrição da imagem aqui(A seta de homotopia ausente parece ser um bug na minha tela. Deve funcionar bem na sua.)

Mas quando tento duas homotopias sucessivas, tudo se mistura:

 \documentclass[12pt]{article}
 \usepackage{tikz-cd}
 \begin{document}
 \begin{center}
  \begin{tikzcd}
  A 
   \arrow[r, bend left=90, "F", ""{name=a, below}]
     \arrow[r, "G"', ""{name=b}]
     \arrow[r, bend right=90, "H"' ""{name=c}]
  & B
     \arrow[Rightarrow, from=a, to=b, "\Theta"]
     \arrow[Rightarrow, from=b, to=c, "\Psi"]
  \end{tikzcd}
  \end{center}
  \end{document}

insira a descrição da imagem aqui Como posso consertar isso? Obrigado!

Responder1

insira a descrição da imagem aqui

 \documentclass[12pt]{article}
\usepackage{tikz-cd}

\begin{document}

 \begin{center}
 \tikzcdset{column sep/normal=3em}
  \begin{tikzcd}
  A
   \arrow[r, bend left=70, "F", ""{name=a, below}]
     \arrow[start anchor={[xshift=3ex]west}, end anchor={[xshift=-3ex]east},r, "G" pos=0.3, ""{name=b},""{name = bb, below}]
     \arrow[r, bend right=70, "H"', ""{name=c}]
  & B
     \arrow[Rightarrow, start anchor={[yshift=-0.75ex]north}, end anchor={[yshift=0.5ex]south}, from=a, to=b, "\Theta" pos = 0.4]
     \arrow[Rightarrow, start anchor={[yshift=-0.75ex]north}, end anchor={[yshift=0.5ex]south}, from=bb, to=c, "\Psi" pos = 0.35]
  \end{tikzcd}
  \end{center}

\end{document} 

informação relacionada