微调交换图

微调交换图

我正在尝试在 LaTeX 中输入以下简单的交换图。我有基础知识,但我需要将 V 居中,并将 g 下的箭头指向相反方向。

\begin{tikzpicture}[every node/.style={midway}]
\matrix[column sep={4em,between origins},
    row sep={2em}] at (0,0)
{ \node(X)   {$X$}  ; & \node(Y) {$Y$}; \\
\node(V) {$V$};                   \\};
\draw[<-] (V) -- (X) node[anchor=east]  {$h$};
\draw[->] (V) -- (Y) node[anchor=north]  {$g$};
\draw[->] (X)   -- (Y) node[anchor=south] {$f$};
\end{tikzpicture}

答案1

这个解决方案有tikz-cd帮助吗?

\documentclass{standalone}
\usepackage{tikz-cd}

\begin{document}

\begin{tikzcd}[column sep=small]
X \arrow{rr}{f} \arrow[swap]{dr}{h}& &Y \arrow{dl}{g}\\
& V & 
\end{tikzcd}    

\end{document}  

在此处输入图片描述

相关内容