Zwei oder mehr externe Datendateien in einer pgfplotstable zusammenfassen
Auch [hier][1] gefragt.
___
Das folgende Bsp. zeigt, wie man 2 dat-Dateiinhalte nebeneinander setzt.
IST:
<code>
a b c A B C
1 2 3 1.1 2.1 3.1
4 5 6 4.1 5.1 6.1
7 8 9 7.1 8.1 9.1
</code>
Wie jedoch setzte ich die beiden dat-Dateiinhalte *untereinander* -*mit einer Leerzeile dazischen*-, so dass folgende Tabelle entsteht:
SOLL:
<code>
a b c
1 2 3
4 5 6
7 8 9
1.1 2.1 3.1
4.1 5.1 6.1
7.1 8.1 9.1
</code>
%\documentclass[paper=a5]{scrartcl}
\documentclass[varwidth, border=2pt]{standalone}
\usepackage{pgfplotstable}
\usepackage{filecontents}
\begin{document}
\begin{filecontents}{dataA.dat}
a b c
1 2 3
4 5 6
7 8 9
\end{filecontents}
\begin{filecontents}{dataB.dat}
1.1 2.1 3.1
4.1 5.1 6.1
7.1 8.1 9.1
\end{filecontents}
\pgfplotstableread{dataA.dat}\dataA
\pgfplotstableread{dataB.dat}\dataB
\pgfplotstablecreatecol[copy column from table={\dataB}{[index] 0}] {A} {\dataA}
\pgfplotstablecreatecol[copy column from table={\dataB}{[index] 1}] {B} {\dataA}
\pgfplotstablecreatecol[copy column from table={\dataB}{[index] 2}] {C} {\dataA}
\pgfplotstabletypeset[precision=4]{\dataA}
\end{document}\end{document}
[1]: http://tex.stackexchange.com/questions/288568/several-files-input-in-one-pgfplotstable