Anschlussfrage zu wie-berechne-ich-die-tabelleintrage-bei-pgfplotstable Wie kann ich, wenn in der 1. Spalte eine Ganzzahl beginnt ( Öffne in Overleaf
\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} gefragt 23 Jul '17, 12:11 cis |
Für die erste Spalte kannst Du statt Öffne in Overleaf
\pgfplotstablenew[ create on use/t/.style={ create col/expr={\pgfplotstablerow/10}%<- changed }, columns={t}, ]{41}\loadedtable Den zusätzlichen Abstand nach der Kopfzeile und damit vor der Zeile mit Öffne in Overleaf
every head row/.style={after row=[1ex]} sowie nach jeder 10.Zeile mit Öffne in Overleaf
every nth row={10}{before row=[1ex]} Code: Öffne in Overleaf
\documentclass[11pt]{scrartcl} \usepackage[T1]{fontenc} \usepackage[margin=.25in]{geometry} \usepackage{booktabs} \usepackage{pgfplotstable} \pgfplotsset{compat=1.12} %\pgfkeys{/pgf/trig format=rad} \pgfplotstablenew[ create on use/t/.style={ create col/expr={\pgfplotstablerow/10}%<- changed }, 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[ fixed zerofill, fixed, precision=5, % columns/t/.style = { column name={$t$}, precision=1, }, % every head row/.style={after row=[1ex]},% <- eingefügt every nth row={10}{before row=[1ex]},% <- eingefügt % ]\loadedtable \endgroup \end{document} beantwortet 23 Jul '17, 19:18 esdd |
»WARUM MUSS SCHLEIFE BIS 4.1 LAUFEN? NICHT BIS 4.0?« https://stackoverflow.com/questions/588004
Aja, thx..