答案1
您可以使用to path
参数来指定所采用的路径。要放置标签,您需要将节点添加到适当的点to path
并为其赋予标准标签样式。
\documentclass{article}
\usepackage{tikz-cd}
\begin{document}
\begin{tikzcd}[arrows = Rightarrow]
\mathrm{metrico}
\arrow[r,"(5)"]
\arrow[rrr,to path={ -- +(0,-4ex) -| node[pos=0.25,commutative
diagrams/every label]{$(1)$}
(\tikztotarget)}]
& \mathrm{T4} \arrow[r,"(4)"]
& \mathrm{T3} \arrow[r,"(3)"]
& \mathrm{T2} \arrow[r,"(2)"]
& \mathrm{T1}
\end{tikzcd}
\end{document}
请注意,to path
由两条路径构成,第二条路径-|
是弯曲位于的线段pos=0.5
,因此pos=0.25
是获取长线段中间所需要的。
另外,您的单词metrico
是用数学排版的,因此字母间距很差。我已通过将单词放入 内进行调整\mathrm
。