Quiero usar groupplots
y establecer una variable para trazar condicionalmente los gráficos. Aquí está el ejemplo mínimo que no funciona:
\documentclass{article}
\usepackage{pgfplots}
\usetikzlibrary{calc}
\usepgfplotslibrary{groupplots}
\def\a{1}
\begin{document}
\begin{tikzpicture
\begin{groupplot}[group style={group size=1 by \a},height=3cm,width=6cm]
\ifnum\a>0{ %
\nextgroupplot[title=One]
\addplot coordinates {(0,0) (1,1) (2,2)};
\ifnum\a>1{ %
\nextgroupplot[title=Two]
\addplot coordinates {(0,2) (1,1) (2,0)};
\ifnum\a>2{ %
\nextgroupplot[title=Three]
\addplot coordinates {(0,2) (1,1) (2,1)};
\ifnum\a>3{ %
\nextgroupplot[title=Four]
\addplot coordinates {(0,2) (1,1) (1,0)};
}\fi
}\fi
}\fi
}\fi
\end{groupplot}
\node (title) at (0,0) {THE Title};
\end{tikzpicture}
\end{document}
Esto falla con:
! Extra }, or forgotten \endgroup.
l.24 }
\fi
No estoy seguro si es por los \ifnum
s anidados o por \nextgroupplot
; si \nextgroupplot
se comenta el primero , el error ahora es:
! Undefined control sequence.
l.11 \addplot
coordinates {(0,0) (1,1) (2,2)};
¿Se puede realizar un trazado tan condicional de gráficos grupales?
Respuesta1
Abandonar el uso de grupos dentro de la groupplot
construcción. Agregué algo de sangría y corregí el tipo pequeño (que faltaba }
al comienzo del tikzpicture
entorno):
\documentclass{article}
\usepackage{pgfplots}
\usetikzlibrary{calc}
\usepgfplotslibrary{groupplots}
\def\a{3}
\begin{document}
\begin{tikzpicture}
\begin{groupplot}[group style={group size=1 by \a},height=3cm,width=6cm]
\ifnum\a>0
\nextgroupplot[title=One]
\addplot coordinates {(0,0) (1,1) (2,2)};
\ifnum\a>1
\nextgroupplot[title=Two]
\addplot coordinates {(0,2) (1,1) (2,0)};
\ifnum\a>2
\nextgroupplot[title=Three]
\addplot coordinates {(0,2) (1,1) (2,1)};
\ifnum\a>3
\nextgroupplot[title=Four]
\addplot coordinates {(0,2) (1,1) (1,0)};
\fi
\fi
\fi
\fi
\end{groupplot}
\end{tikzpicture}
\end{document}