Domanda di Tikzcd sulle etichette delle frecce
Ho provato a disegnare un diagramma commutativo di questa forma:
Il codice e il collegamento ad esso su https://tikzcd.yichuanshen.de/sono questi:
\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}
Tuttavia, quando inserisco questo codice in Overleaf, produce questa immagine con le etichette delle frecce spostate:
Che cosa sto facendo di sbagliato?
Risposte
1 AndréC
Ho contrassegnato le modifiche con %<--
nel codice.
\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}