我怎样才能用箭头连接两个字母?

我怎样才能用箭头连接两个字母?

我必须为一款游戏写一份手册。手册的说明包括以下视觉内容:

在此处输入图片描述

简而言之,我需要一个圆圈(不是绝对必须的,正方形也可以)围绕两个字母,以及一个从字母 1 到字母 2 的箭头。(有时会逆时针。)

答案1

您可以使用蒂克兹 及其remember picture属性。这只是一个起点,基于回答杰克。当然,您可以开始调整参数(例如弯曲!)来根据您的喜好微调结果。

在此处输入图片描述

\documentclass{article}
\usepackage{tikz}
\tikzset{
    every picture/.style={
        remember picture,   % Make nodes available to all TikZ pictures
        inner xsep=0pt, % Remove horizontal padding
        inner ysep=1pt, % Set small vertical padding
        baseline,       % Align TikZ pictures at the baseline
        every node/.style={
            anchor=base % Align all nodes at the baseline
        }
    }
}
\begin{document}

b\tikz \node[circle, thin,draw](a) {e};n\tikz \node[circle, thin,draw](b) {e};dict
 \tikz [overlay] \draw [->]  (a.north) to [bend right=-70]  (b.north);   
\end{document}

相关内容