Esta es una pequeña matriz con 5x3 nodos. Mi verdadera matriz es mucho más grande y preferí darle un número a cada celda (del 1 al 15; sí, sé que del 0 al 14 sería más fácil). Ya numeré las celdas con un foreach para ilustrar la numeración.
Lo que quiero es colorear unas líneas de separación horizontales, dando el número de la celda de la izquierda y el número de la celda de la derecha. Funciona perfectamente cuando las coordenadas de la matriz se dan con números estáticos (por ejemplo, la línea roja entre 7 y 9). No funciona si intento generar dinámicamente los números de celda en un bucle foreach (por ejemplo, la línea azul entre 1 y 3). Aparentemente, se ignora el desplazamiento (norte, sur, este...). Como puedes imaginar, hice muchas variantes antes de pedir ayuda aquí.
¿Tienes alguna idea de dónde estaría mi error?
Gracias de antemano.
Este es mi 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}
Respuesta1
El .south west
y .south east
estaba fuera de los corchetes en lugar de dentro.
\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}