如何移动自动机中边缘的标题?

如何移动自动机中边缘的标题?

我有一段用 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

少即是多:删除定位信息abovebelow

在此处输入图片描述

\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)

相关内容