Wie wende ich bei pgfplotstable column type Befehle auf eine Auswahl von Spalten an?
Wie wende ich am z.B. `column type/.add={>{\scriptsize}}{}` auf die 1. und 3. Spalte an, so dass ich das nicht überall einzeln dazuschreiben muss?
![alt text][1]
\documentclass[varwidth, border=2pt]{standalone}
%\documentclass[paper=a5]{scrartcl}
\usepackage{pgfplotstable}
\usepackage{filecontents}
\begin{document}
\begin{filecontents}{kTest.txt}
1 2 3
4 5 6
\end{filecontents}
\pgfplotstableset{%%%
%col sep = {,},
%row sep={\\},
string type,
columns/0/.style = {column name=X,},
name=X,column type/.add={>{\scriptsize}}{}},
columns/1/.style = {column name=Y},
columns/2/.style = {column name=Z, column type/.add={>{\scriptsize}}{}},
}%%%
\pgfplotstabletypeset[
columns={0,1,2},
]{kTest.txt}
\end{document}
[1]: http://texwelt.de/wissen/upfiles/55555555_20.png