我有一段用 LaTeX 绘制自动机的代码。
\begin{figure}[htpb]
\centering
\begin{tikzpicture}[->,>=stealth',shorten >=5pt,auto,node distance=2.8cm,semithick]
\node[initial,state] (q0) {$q_a$};
\node[state,accepting] (q1) [right of=q0] {$q_b$};
\path (q0) edge [loop above] node {a} (q0)
edge [bend left , below ] node {b} (q1)
(q1) edge [loop above] node {b} (q1)
edge [bend left , above] node {a} (q0);
\end{tikzpicture}
\end{figure}
这给了我这个自动机:
我怎样才能将 b 移动到边缘上方的中间路径上并将 a 移动到下方?
答案1
使用节点anchor
键。
\documentclass[tikz]{standalone}
\usetikzlibrary{automata,arrows}
\begin{document}
\begin{tikzpicture}[->,>=stealth',shorten >=5pt,auto,node distance=2.8cm,semithick]
\node[initial,state] (q0) {$q_a$};
\node[state,accepting] (q1) [right of=q0] {$q_b$};
\path (q0) edge [loop above] node {a} (q0)
edge [bend left , below ] node [anchor=south] {b} (q1)
(q1) edge [loop above] node {b} (q1)
edge [bend left , above] node [anchor=north] {a} (q0);
\end{tikzpicture}
\end{document}
答案2
少即是多:删除定位信息above
和below
。
\documentclass[border=10pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{arrows,automata}
\begin{document}
\begin{tikzpicture}%
[->,>=stealth',shorten >=5pt,auto,node distance=2.8cm,semithick]
\node[initial,state] (q0) {$q_a$};
\node[state,accepting] (q1) [right of=q0] {$q_b$};
\path (q0) edge [loop above] node {a} (q0)
edge [bend left] node {b} (q1)
(q1) edge [loop above] node {b} (q1)
edge [bend left] node {a} (q0);
\end{tikzpicture}
\end{document}
如果要将标签移动到边的另一侧,则将关键字添加swap
到节点。
(q0) edge [bend left] node[swap] {b} (q1)