如何在图表中的两个边之间添加箭头?

如何在图表中的两个边之间添加箭头?

如何制作这种类型的图表?我正在使用 tkz-graph,但找不到添加此垂直箭头的方法。

在此处输入图片描述

答案1

这是一个使用 的快速解决方案tikz

在此处输入图片描述

\documentclass{standalone}
    \usepackage{tikz}
\begin{document}
    \begin{tikzpicture}
        \node (A) at (0,0) {$\bullet$};
        \node (B) at (3,0) {$\bullet$};
        \draw [->, bend right] (B) to node [auto, swap] {$1_\bullet$} (A) ;
        \draw [->, bend left] (B) to node [auto] {$t(h)$} (A) ;
        \path (B) to node {$\Downarrow h$} (A);
    \end{tikzpicture}
\end{document}

相关内容