TikzCD: todo se está mezclando

TikzCD: todo se está mezclando

Cuando tengo una homotopía entre dos flechas, las cosas parecen ir bien:

\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}

ingrese la descripción de la imagen aquí(La flecha de homotopía que falta parece ser un error en mi pantalla. Debería funcionar bien en la tuya).

Pero cuando pruebo dos homotopías sucesivas, todo se mezcla:

 \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}

ingrese la descripción de la imagen aquí ¿Cómo puedo arreglar esto? ¡Gracias!

Respuesta1

ingrese la descripción de la imagen aquí

 \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} 

información relacionada