使用 LaTeX 绘制交换图

使用 LaTeX 绘制交换图

我怎样才能编写下图所示的 LaTeX 代码:在此处输入图片描述

答案1

为了扩展 Percusse 的评论,你可以从以下代码开始:

\documentclass{article}
\usepackage{amsmath,tikz-cd}
\begin{document}
\begin{equation*}
\begin{tikzcd}[column sep=2cm]
A\arrow[r,"\text{inclusion}"] \arrow[rd, swap,"\varphi"] & F(A) \arrow[d,"\Phi"] \\
                                                         & M
\end{tikzcd}
\end{equation*}
\end{document}

给予:

在此处输入图片描述

相关内容