pgfplotstable:创建带有循环的行

pgfplotstable:创建带有循环的行

是否可以创建带有循环的行?

我想到过这样的事情:

\○pgfplotsinvokeforeach{1,...,5}{%
\pgfplotstableread[col sep=&]{
#1 & #1 & #1 
}\temp
\pgfplotstablevertcat{\main}{\temp}
}%
\pgfplotstabletypeset[]{\main}

但这不管用。我该怎么办?

在此处输入图片描述

\documentclass[a4paper, landscape=false]{article}
\usepackage{pgfplotstable}
\pgfplotsset{compat=newest}

\begin{document}
% Start
\pgfplotstableread[col sep=&]{
999 & 999 & 999
}\main

\pgfplotstableread[col sep=&]{
1 & 1 & 1  
}\temp

Works:
\pgfplotstablevertcat{\main}{\temp}
\pgfplotstabletypeset[]{\main}

Works not:
%\pgfplotsinvokeforeach{1,...,5}{%
%\pgfplotstableread[col sep=&]{
%#1 & #1 & #1 
%}\temp
%\pgfplotstablevertcat{\main}{\temp}
%}%
%\pgfplotstabletypeset[]{\main}
\end{document}

相关内容