Я хочу использовать groupplots
, и задать переменную для условного построения графиков. Вот минимальный нерабочий пример:
\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}
Это не удается с:
! Extra }, or forgotten \endgroup.
l.24 }
\fi
Не уверен, происходит ли это из-за вложенных \ifnum
s или из-за \nextgroupplot
; если первый \nextgroupplot
закомментирован, ошибка будет выглядеть так:
! Undefined control sequence.
l.11 \addplot
coordinates {(0,0) (1,1) (2,2)};
Можно ли осуществить такое условное построение групповых графиков?
решение1
Откажитесь от использования групп внутри groupplot
конструкции. Я добавил отступы и исправил мелкий шрифт (отсутствующий }
в начале окружения tikzpicture
):
\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}