无法使用 tikz-cd 绘制此图

无法使用 tikz-cd 绘制此图

我在绘制表格图表时遇到了很多问题

\begin{itemize}
 \item \textbf{The Tower Property}
  \begin{tikzcd}
   L \arrow[hook]{u} \\
   K \arrow[hook]{u} \\
   k \arrow[hook]{u} \arrow[bend left][dotted]{uu} 
 \end{tikzcd}
\end{itemize} 

我的意图是绘制一个由 L、K 和 k 组成的塔,并用箭头连接起来,并且其中一个箭头从 k 开始,弯曲并虚线向上到 L。

提前致谢。

答案1

第一行不需要向上的箭头,因为您的代码中它上方没有箭头。

在此处输入图片描述

代码:

\documentclass{article}
\usepackage{tikz-cd}
\begin{document}
\begin{itemize}
 \item \textbf{The Tower Property}
  \begin{tikzcd}
   L \\%\arrow[hook]{u}  \\
   K \arrow[hook]{u}  \\
   k \arrow[hook]{u} \arrow[bend left,dotted]{uu}
 \end{tikzcd}
\end{itemize} 
\end{document}

相关内容