I'm wondering how one would do a diagram like this one:
I don't know how to make the bent arrows and I would also like to have the text (in this case "...") in the middle of the arrow.
Here is a working sample code (in xymatrix and tikz-cd) of what I can do myself:
\documentclass{amsart}
\usepackage[all]{xy}
\begin{document}
\xymatrix{
0 \ar[r] & A\ar[r] & B\ar[r] & C & \\
& D\ar[r] & E\ar[r] & F\ar[r] & 0 \\
}
\end{document}
\documentclass{amsart}
\usepackage{tikz-cd}
\begin{document}
\begin{tikzcd}
0 \arrow{r} & A \arrow{r} & B \arrow{r} & C & \\
& D \arrow{r} & E \arrow{r} & F \arrow{r} & 0 \\
\end{tikzcd}
\end{document}



