2
    $$\begin{tikzcd} A\ar[r,shift left,"f"] 
&\ar[l,shift left,"h"] B\ar[r,shift left,"g"] 
&\ar[l,shift left,"l"]\ar[l,bend left, shift left,"h"] 
C\end{tikzcd}$$ 

enter image description here

This is almost as I'd like it to be, except that the $h$ arrow is going from $C$ to $B$ rather than from $C$ to $A$. How can I modify the code so it does that?

EDIT: accidentally called two arrows 'h'. This was not intentional, but I think the text makes it clear which one I'm referring to.

1 Answers1

4

Use ll in \ar[ll,bend left, shift left,"h"]. Two ls mean that the arrow should go two positions to the left.

\documentclass{article}
\usepackage{tikz-cd}

\begin{document}
      \[\begin{tikzcd} A\ar[r,shift left,"f"]
            &\ar[l,shift left,"h"] B\ar[r,shift left,"g"]
            &\ar[l,shift left,"l"]\ar[ll,bend left, shift left,"h"] C
        \end{tikzcd}
      \]
\end{document}

enter image description here