
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}