我必须为一款游戏写一份手册。手册的说明包括以下视觉内容:
简而言之,我需要一个圆圈(不是绝对必须的,正方形也可以)围绕两个字母,以及一个从字母 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}