答案1
看起来自动定位选择放置标签above left
/below left
而不是仅仅above
/ below
。使用例如指定位置"f_1"above
,它可以正常工作。
如果您还指定了,start anchor
箭头end anchor
看起来可能会更好。(可能有更好的方法,但我不太清楚tikz-cd
。)
\documentclass[border=5mm]{standalone}
\usepackage{tikz-cd}
\begin{document}
\begin{tikzcd}
k
\arrow[r, draw=none, "\raisebox{+1.5ex}{\vdots}" description]
\arrow[r, bend left, start anchor=north east, end anchor=north west, "f_1"above]
\arrow[r, bend right, start anchor=south east, end anchor=south west, "f_n"below]
&
k\oplus k
\end{tikzcd}
\end{document}