两个圆圈之间的弯曲箭头

两个圆圈之间的弯曲箭头

我想知道是否可以在 Latex 中制作这种图表:

在此处输入图片描述

这个问题似乎是一个不错的起点,但我不知道如何用圆圈替换节点。此外,我找不到任何关于在圆周上做标记的说明,就像我的画中那样。谢谢您的帮助!

答案1

\documentclass[french]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[a4paper]{geometry}
\usepackage{babel}
\usepackage{amsmath,amsthm, amssymb, latexsym}
\usepackage{tikz}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\draw[thick] (0cm,0cm) circle(1cm);
\draw[thick] (3cm,0cm) circle(1cm);
\path node[anchor=south] at (0,1) {e};
\path node[anchor=north] at (0,-1) {b};
\path node[anchor=east] at (-1,0) {ab};
\path node[anchor=west] at (1,0) {a};
\path node[anchor=south] at (3,1) {eH};
\path node[anchor=north] at (3,-1) {bH};
\path[->] (-1,0) edge [out=-120, in=220] (3,-1);
\path[->] (0,-1) edge [out=-20, in=200] (3,-1);
\path[->] (0,1) edge [out=20, in=-200] (3,1);
\path[->] (1,0) edge [out=40, in=170] (3,1);
\end{tikzpicture}
\end{document}

相关内容