我知道其他选择也。
但我感到疑惑的是: 如何循环创建单行表,然后将其添加到前一个总表中?
在接下来的尝试中,只接受当前循环值。
我怎样才能解决这个问题?
我对使用该功能特别感兴趣\pgfplotstablevertcat
。
这可能吗?
\documentclass{article}
\usepackage{pgfplotstable}
\pgfplotsset{compat=newest}
\begin{document}
\section{Create following Table row by row}
\pgfplotstabletypeset[header=true, col sep=comma]{
k, 2k
1, 2
2, 4
3, 6
}
\section{Try}
\pgfplotstableread[header=false, col sep=comma]{
k, 2k
}{\main}
Startsituation: \pgfplotstabletypeset[string type]{\main}
\subsection{Loop}
\pgfplotsforeachungrouped \k in {1,2,3} {%%
\pgfmathsetmacro\Double{2*\k}
\pgfplotstableread[header=false, col sep=comma,
row sep=\\ % <--- seems that he wants that............
]{
\k, \Double \\
}{\temp}
\noindent Temprow (good!): \pgfplotstabletypeset[]{\temp}
\pgfplotstablevertcat{\main}{\temp}
\noindent Tempsituation (bad!): \pgfplotstabletypeset[string type]{\main}
}%%
\end{document}