Wie erreiche ich regelmäßige Leerzeilen bei pgfplotstable?
Anschlussfrage zu
[wie-berechne-ich-die-tabelleintrage-bei-pgfplotstable][1]
___
**Wie kann ich, wenn in der 1. Spalte eine Ganzzahl beginnt (`1.0, (`0.0, 1.0, 2.0,...`) eine Leerzeile einfügen?**
\documentclass[11pt]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[margin=.25in]{geometry}
\usepackage{pgfplotstable}
\pgfplotsset{compat=1.12}
%\pgfkeys{/pgf/trig format=rad}
\pgfplotstablenew[
create on use/t/.style={
create col/set list={0,0.1,...,4.1}}, % WARUM MUSS SCHLEIFE BIS 4.1 LAUFEN? NICHT BIS 4.0?
columns={t},
]{41}\loadedtable
\pagestyle{empty}
\begin{document}
%\noindent
\begingroup
\pgfplotsinvokeforeach{0,...,9}{%
\pgfplotstablecreatecol[create col/expr={sin(\thisrow{t}+#1/100)}]{#1}\loadedtable
}%
\pgfplotstabletypeset[
% Allgemeine Einstellungen
fixed zerofill,
fixed, % Kommazahlen angeben
precision=5, % Rundung der Tabelleneinträge
%
columns/t/.style = {
column name={$t$},
precision=1,
},
%
]\loadedtable
\endgroup
\end{document}
[1]: http://texwelt.de/wissen/fragen/20448/wie-berechne-ich-die-tabelleintrage-bei-pgfplotstable