Tikz と Matrix では、foreach ループで生成されたノードは「風アンカー」(北、南など) を受け入れません。

Tikz と Matrix では、foreach ループで生成されたノードは「風アンカー」(北、南など) を受け入れません。

これは 5x3 ノードを持つ小さなマトリックスです。実際のマトリックスはもっと大きく、各セルに番号を付けることにしました (1 から 15 まで - 0 から 14 のほうが簡単であることはわかっています)。番号付けを示すために、すでに foreach を使用してセルに番号を付けています。

私がしたいのは、いくつかの水平分離線に色を付け、左側のセルの番号と右側のセルの番号を示すことです。マトリックス座標が静的な番号で指定されている場合は、完全に機能します (たとえば、7 と 9 の間の赤い線)。foreach ループでセル番号を動的に生成しようとすると、機能しません (たとえば、1 と 3 の間の青い線)。どうやら、オフセット (北、南、東...) は無視されます。ご想像のとおり、ここで助けを求める前に、私は多くのバリエーションを作成しました。

私の間違いがどこにあるかご存じでしょうか?

前もって感謝します。

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

これは私のMWEです

\documentclass[a4paper, 11pt]{report}
% --- DOCUMENT
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

\usepackage{tikz}
\usepackage{caption}

\begin{document}

\begin{figure}[!h]\centering
\usetikzlibrary{matrix,calc}

\begin{tikzpicture}[ampersand replacement=\&]
  \tikzset{
    table nodes/.style={rectangle, draw, align=center, minimum height=5mm,
      text depth=0.5ex,text height=1ex,inner xsep=0pt,outer sep=0pt
      },      
    table/.style={matrix of nodes, row sep=-\pgflinewidth, column sep=-\pgflinewidth,
      nodes={table nodes},
      execute at empty cell={\node[draw=none]{}; }
      }
    }
  \matrix at (0,0) [table,text width=5mm,name=MX] {%
    \ \&\ \&\ \\\ \&\ \&\ \\\ \&\ \&\ \\\ \&\ \&\ \\\ \&\ \&\ \\};
  \foreach \i [evaluate={\r=int((\i-1)/3+1); \c={int(mod(\i-1,3)+1)} }] in {1,...,15} {
    \node at ($(MX-\r-\c)$) {\footnotesize\i};
    }
  \foreach \b/\e [evaluate={\r=int((\b-1)/3+1); \c={int(mod(\b-1,3)+1)}; \d={int(mod(\e-1,3)+1)} }] in {1/3} { %
    \draw[red,semithick] ($(MX-\r-\c)$) circle(2pt);  <--- THIS WORKS
    \draw[blue,semithick] ($(MX-\r-\c)$.south) -- ($(MX-\r-\d)$.south);  <--- THIS DOESN'T WORK
    %\coordinate (N) at  ($(MX-\r-\c)$);
    %\draw[blue,semithick] (N.south) circle(2pt);  <--- THIS DOESN'T WORK
    %\draw[blue,semithick] (N.south) circle(2pt);  <--- THIS DOESN'T WORK
    }
  \draw[red,semithick] (MX-3-1.south west) -- (MX-3-3.south east); % <--- THIS WORKS
  % useasboundingbox
  \useasboundingbox[blue] ($(MX-1-1.north west)+(135:10pt)$) rectangle ($(MX-5-3.south east)+(315:10pt)$);
\end{tikzpicture}
\caption{Matrix example}
\end{figure}
\end{document}

答え1

.south westand は括弧.south eastの内側ではなく外側にあった

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

\documentclass[a4paper, 11pt]{report}
% --- DOCUMENT
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

\usepackage{tikz}
\usepackage{caption}

\begin{document}
    
    \begin{figure}[!h]\centering
        \usetikzlibrary{matrix,calc}
        
        \begin{tikzpicture}[ampersand replacement=\&]
        \tikzset{
            table nodes/.style={rectangle, draw, align=center, minimum height=5mm,
                text depth=0.5ex,text height=1ex,inner xsep=0pt,outer sep=0pt
            },      
            table/.style={matrix of nodes, row sep=-\pgflinewidth, column sep=- 
        \pgflinewidth,
                nodes={table nodes},
                execute at empty cell={\node[draw=none]{}; }
            }
        }
        \matrix at (0,0) [table,text width=5mm,name=MX] {%
            \ \&\ \&\ \\\ \&\ \&\ \\\ \&\ \&\ \\\ \&\ \&\ \\\ \&\ \&\ \\};
        \foreach \i [evaluate={\r=int((\i-1)/3+1); 
            \c={int(mod(\i-1,3)+1)} }] in {1,...,15} {
            \node at ($(MX-\r-\c)$) {\footnotesize\i};
        }
        \foreach \b/\e [evaluate={\r=int((\b-1)/3+1); 
            \c={int(mod(\b-1,3)+1)}; 
            \d={int(mod(\e-1,3)+1)} }] in {1/3} { %
            \draw[red,line width=1pt] (MX-\r-\c) circle(2pt); % <--- THIS WORKS
            \draw[blue,line width=2pt] (MX-\r-\c.south west) -- (MX-\r-\d.south east); 
           % <--- THIS ALSO WORKS NOW  the .south west was outside the brackets 
            %instead of inside
            %\coordinate (N) at  ($(MX-\r-\c)$);
            %\draw[blue,semithick] (N.south) circle(2pt);  <--- THIS DOESN'T WORK
            %\draw[blue,semithick] (N.south) circle(2pt);  <--- THIS DOESN'T WORK
        }
        \draw[red,line width=2pt] (MX-3-1.south west) -- (MX-3-3.south east); % <--- 
        %THIS WORKS
        % useasboundingbox
        \useasboundingbox[blue, line width=2pt] ($(MX-1-1.north west)+(135:10pt)$) 
         rectangle ($(MX-5-3.south east)+(315:10pt)$);
        \end{tikzpicture}
        \caption{Matrix example}
    \end{figure}
\end{document}

関連情報