答案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}