pgfplotsinvokeforeach 使用参数

pgfplotsinvokeforeach 使用参数

以下代码在最小示例中有效,但在我的文档中无效

\documentclass{article}
\usepackage{tikz}
\usepackage{pgfplots}
\begin{document}
  \pgfplotsinvokeforeach{1,2,...,10} {
    \edef\nursery{#1}
    \nursery
  }
\end{document}

我收到错误

! Illegal parameter number in definition of \pgffor@body.
<to be read again> 
                   1
l.143 }

有人知道这个问题吗?

相关内容