左端のノードの片側を太字にしたTikzチェーン

左端のノードの片側を太字にしたTikzチェーン

みなさん、おはようございます。実はここに書くのは初めてなので、返信していただける方はよろしくお願いします。私は学部論文を書いているのですが、現在チューリングマシンを描くのに行き詰まっています。やりたいことは次のようなものです。

ここに画像の説明を入力してください

ただし、最初のノードの左側 (4 辺すべてではなく、左側のみ) を verythick にしたいと思います。これまでに行ったことは次のとおりです。

\begin{tikzpicture}
\edef\turingtapesize{0.7cm}
\tikzstyle{tape}=[draw,minimum size=\turingtapesize]
\tikzset{
    leftmostnode/.style={
        draw,minimum size=\turingtapesize,
        append after command={% <= for the leftside line of the leftward node
            \pgfextra{%
            \begin{pgfinterruptpath}
            \begin{pgfonlayer}[foreground]
                \draw[verythick] (\tikzlastnode.south west)--(\tikzlastnode.north west);
            \end{pgfonlayer}
            \end{pgfinterruptpath}
            }
        }
    }
}

% Drawing the tape itself
\begin{scope}[start chain=0 going right,node distance=0mm]
    \node[on chain=0,tape] (b)  {0};
    \node[left=of b,leftmostnode](a){1};
    \node[on chain=0,tape] (c)  {1};
    \node[on chain=0,tape] (d)  {0};
    \node[on chain=0,tape] (e)  {1};
    \node[on chain=0,tape] (f)  {0};
    \node[on chain=0,tape] (g)  {0};
    \node[on chain=0,tape] (h)  {1};
    \node[on chain=0,tape] (i)  {1};
    \node[on chain=0,tape] (l)  {$\sqcup$};
    \node[on chain=0,tape] (l)  {$\sqcup$};
    \node[on chain=0,tape] (l)  {$\sqcup$};
\end{scope}
\end{tikzpicture}

しかし、エラーが発生します:

申し訳ありませんが、要求されたレイヤー '[' が見つかりませんでした。スペルミスでしょうか?

\nodeleft=bの、最も左のノード{1};

テープの端を「チェーンソーで切ったような」(こんな言葉があるのでしょうか?)状態にするにはどうしたらいいか教えていただけますか? よろしくお願いします。 ;) 出典:1 2

編集 moospit の提案に従って、「厚さの問題」を回避しました。あとは、あの特殊なギザギザの線を作成するだけです ;)

編集2 あなたの返信を見ました。少し違う方法で解決しました。tikz-image 全体のコード以下に投稿します ;)

\begin{tikzpicture}
\edef\turingtapesize{0.7cm}
\tikzstyle{tape}=[draw,minimum size=\turingtapesize]

% Drawing the tape itself
\begin{scope}[start chain=0 going right,node distance=0mm]
    \node[on chain=0,tape]          (a)     {1}       ;
    \node[on chain=0,tape]          (b)     {0}       ;
    \node[on chain=0,tape]          (c)     {1}       ;
    \node[on chain=0,tape]          (d)     {0}       ;
    \node[on chain=0,tape]          (e)     {1}       ;
    \node[on chain=0,tape]          (f)     {0}       ;
    \node[on chain=0,tape]          (g)     {0}       ;
    \node[on chain=0,tape]          (h)     {1}       ;
    \node[on chain=0,tape]          (i)     {1}       ;
    \node[on chain=0,tape]          (l)     {$\sqcup$};
    \node[on chain=0,tape]          (l)     {$\sqcup$};
    \node[on chain=0,tape]          (l)     {$\sqcup$};
    \node[on chain=0,tape,draw=none](m)     {}        ;
    \node[on chain=0,tape,draw=none](n)     {$\ldots$};

% Coordinates
    \coordinate(snake1) at ($ (l.north east)!0.5cm!(m.north east) $);
    \coordinate(snake2) at ($ (l.south east)!.5cm!(m.south east) $) ;

    \draw [-] (l.north east) -- (snake1);
    \draw [-] (l.south east) -- (snake2);
    \draw[snake=snake,
        segment amplitude=.4mm,
            segment length=1.75mm,
        line after snake=0mm] (snake1) -- (snake2);
\end{scope}

    \draw[ultra thick] (a.south west) -- (a.north west)                   ;
    \node[draw,above=0.75cm of e,minimum size=\turingtapesize] (Q) {$q_3$};
    \draw[-latex] (Q) -- (e)                                              ;     
\end{tikzpicture} 

編集3

\begin{tikzpicture}
  \tikzset{tape/.style={minimum size=.7cm, draw}}
  \begin{scope}[start chain=0 going right, node distance=0mm]
   \foreach \x [count=\i] in {1,0,1,0,1,0,0,1,1,$\sqcup$,$\sqcup$,$\sqcup$} {
    \ifnum\i=12 % if last node reset outer sep to 0pt
      \node [on chain=0, tape, outer sep=0pt] (n\i) {\x};
      \draw (n\i.north east) -- ++(.1,0) decorate [decoration={zigzag, segment length=.12cm, amplitude=.02cm}] {-- ($(n\i.south east)+(+.1,0)$)} -- (n\i.south east) -- cycle;
     \else
      \node [on chain=0, tape] (n\i) {\x};
     \fi
     \ifnum\i=1 % if first node draw a thick line at the left
      \draw [line width=.1cm] (n\i.north west) -- (n\i.south west);
     \fi
   }
   \node [right=.25cm of n12] {$\cdots$};
   \node [tape, above left=.25cm and 1cm of n1] (q3) {$q_3$};
   \draw [>=latex, ->] (q3) -| (n5);
  \end{scope}
 \end{tikzpicture}

そして最終結果は次のとおりです。 ここに画像の説明を入力してください

答え1

tapeノードに独自のスタイルを使用してa、チェーン コードの後に​​これを追加するのはどうでしょうか。

\draw [very thick] (a.south west) -- (a.north west);

または

\draw [line width=.1cm] (a.south west) -- (a.north west);

この方法では、ノードの上に追加の線を描画できますa

レンダリングされた画像

編集:チェーンの最後にあるジグザグノードの更新 (MWE)

ここにジグザグノードに関する情報もいくつかあります。zigzag以下に説明するパスの一部に -decoration を使用しました。zigzag segment length必要に応じて、および amplitude` を調整してください。

outer sepチェーンノードの を に設定するように注意してください0。そうしないと、ジグザグ パスはnorth eastおよびsouth east座標からいくらかオフセットされます。

\documentclass[tikz, border=5mm]{standalone}

\usetikzlibrary{decorations.pathmorphing, calc}

\begin{document}
 \begin{tikzpicture}
  \node [draw, outer sep=0pt] (n) {n};
  \draw (n.north east) -- ++(.1,0) decorate [decoration={zigzag, segment length=.12cm, amplitude=.02cm}] {-- ($(n.south east)+(+.1,0)$)} -- (n.south east) -- cycle;
 \end{tikzpicture}
\end{document}

レンダリングされた画像

もう一つ編集:我慢できませんでした ;)。コードを少し書き直して、チェーンを拡張してより多くの要素に対応できるようにします。

さらに質問がある場合は、お気軽にお問い合わせください。必要に応じてzigzag簡単に変更できます。snakes

\documentclass[tikz, border=5mm]{standalone}
\usetikzlibrary{calc, chains, decorations.pathmorphing}

\begin{document}
 \begin{tikzpicture}
  \tikzset{tape/.style={minimum size=.7cm, draw}}
  \begin{scope}[start chain=0 going right, node distance=0mm]
   \foreach \x [count=\i] in {1,0,1,10,1,1,1,1,$\sqcup$,$\sqcup$,$\sqcup$} {
    \ifnum\i=11 % if last node reset outer sep to 0pt
      \node [on chain=0, tape, outer sep=0pt] (n\i) {\x};
      \draw (n\i.north east) -- ++(.1,0) decorate [decoration={zigzag, segment length=.12cm, amplitude=.02cm}] {-- ($(n\i.south east)+(+.1,0)$)} -- (n\i.south east) -- cycle;
     \else
      \node [on chain=0, tape] (n\i) {\x};
     \fi
     \ifnum\i=1 % if first node draw a thick line at the left
      \draw [line width=.1cm] (n\i.north west) -- (n\i.south west);     
     \fi
   }
   \node [right=.25cm of n11] {$\cdots$};
   \node [tape, above left=.25cm and 1cm of n1] (q7) {$q_7$};
   \draw [>=latex, ->] (q7) -| (n5); 
  \end{scope}  
 \end{tikzpicture}
\end{document} 

レンダリングされた画像

関連情報