[Tex/LaTex] Drawing longer arrows in TikZ

tikz-arrowstikz-cd

I have the following diagram:

\begin{tikzcd}[font=\large]

A \rightarrow & B  & C \leftarrow & D\\

E \arrow[hookrightarrow]{u} \rightarrow   & F  \arrow{ru} & G \leftarrow \arrow{ru}

\end{tikzcd}

Is there a way of "drawing" a longer arrow in the 2nd row such that F is below C and G is below D?

Best Answer

Do you want this? Your question is not very clear.

% arara: pdflatex

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

\begin{document}
\begin{tikzcd}[font=\large] 
    A \arrow{r} & B  & C \arrow{l} & D\\    
    E \arrow[hook]{u} \arrow{rr} & & F  \arrow{u} & G \arrow{l} \arrow{u}   
\end{tikzcd}
\end{document}

enter image description here

Related Question