我怎样才能替换序列(在pgfplots
Tikz 环境中)
\addplot[black] table {plot3/fnxspy1.txt};
\addplot[black] table {plot3/fnxspy2.txt};
\addplot[black] table {plot3/fnxspy3.txt};
\addplot[black] table {plot3/fnxspy4.txt};
\addplot[black] table {plot3/fnxspy5.txt};
\addplot[black] table {plot3/fnxspy6.txt};
\addplot[black] table {plot3/fnxspy7.txt};
通过更紧凑的\foreach
构造?
答案1
您可以使用扩展的 for 循环pgfplots
\pgfplotsinvokeforeach{1,...,7}{\addplot[black] table {plot3/fnxspy#1.txt};}