Pregunta de Tikzcd en etiquetas de flechas
Traté de dibujar un diagrama conmutativo de esta forma:
El código y el enlace a él en https://tikzcd.yichuanshen.de/son estos uno:
\begin{tikzcd} u_i \arrow["?"', loop, distance=2em, in=125, out=55] \arrow[rr, "{(g^{-1}u_i,g^{-1})}", bend left, shift left] & & g^{-1}u_ig \arrow[ll, "{(u_i g,g)}", bend left] \arrow["{(u,v)}"', loop, distance=2em, in=125, out=55] \end{tikzcd}
Sin embargo, cuando conecto este código en Overleaf, produce esta imagen con las etiquetas de flecha desplazadas:
¿Qué estoy haciendo mal?
Respuestas
1 AndréC
He marcado los cambios %<--
en el código.
\documentclass[tikz, border=5mm]{standalone}
\usepackage{tikz-cd}
\begin{document}
\begin{tikzcd} u_i
\arrow["?"', loop, distance=2em, in=125, out=55]
\arrow[rr, "{(g^{-1}u_i,g^{-1})}"{anchor=south},% <-- add anchor
bend left] & &
g^{-1}u_ig
\arrow[ll, "{(u_i g,g)}"{anchor=north},% <-- add anchor
bend left]
\arrow["{(u,v)}"', loop, distance=2em, in=125, out=55]
\end{tikzcd}
\end{document}