箭头名称未出现在交换图中

箭头名称未出现在交换图中

在 Latex 中,我输入了以下代码:

\begin{tikzcd}
A \arrow[r, "f"] & B
\end{tikzcd}

但是,箭头上方没有出现“f”。我该如何解决这个问题?

答案1

如果您使用tikz-cd具有完整最小代码的包,您将获得预期的结果。

\documentclass[a4paper,12pt]{article}
\usepackage{tikz-cd}

\begin{document}
\begin{tikzcd}
A \arrow[r, "f"] & B
\end{tikzcd}
\end{document}

这是屏幕截图:

在此处输入图片描述

相关内容