Wie wende ich am z.B. Open in Online-Editor
\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,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} gefragt 16 Jan '16, 21:02 cis |
Einfach einen neuen Open in Online-Editor
\documentclass[varwidth, border=2pt]{standalone} \usepackage{pgfplotstable} \usepackage{filecontents} \begin{document} \begin{filecontents}{kTest.txt} 1 2 3 4 5 6 \end{filecontents} \pgfplotstableset{ foreach column append style/.code 2 args = { \pgfplotsforeachungrouped \col in {#1} { \pgfplotstableset{ /pgfplots/table/columns/\col/.append style = {#2} } } } } \pgfplotstableset{ string type, columns/0/.style = {column name=X}, columns/1/.style = {column name=Y}, columns/2/.style = {column name=Z}, foreach column append style={0,2}{column type/.add={>{\scriptsize}}{}} } \pgfplotstabletypeset[ columns={0,1,2}, ]{kTest.txt} \end{document} beantwortet 17 Jan '16, 17:30 Henri Ähm, kann das sein, dass wenn
(19 Okt '18, 19:56)
cis
|