Tikz 中的字符串连接

Tikz 中的字符串连接

我怎样才能替换序列(在pgfplotsTikz 环境中)

\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};}

相关内容