Ich möchte bei einer Tabelle die Spaltenbenennung ( Ich dachte, das geht mit Öffne in Overleaf
%\documentclass[]{article} \documentclass[border=3pt, varwidth]{standalone} \usepackage{pgfplots} \pgfplotsset{width=7cm,compat=1.13} % Tabelle des Typs % x y p q \pgfplotstableread{ 1 2 2 5 1 3 7 1 8 2 3 1 9 5 3 6 }\datatable \begin{document} \begin{tikzpicture} \begin{axis}[ymin=0] \addplot table [ %header=false, % columns 0 und 1 werden autom. als x- und y-Koordinaten gewertet columns/2/.style = {column name=p}, columns/3/.style = {column name=q}, % %x=p, y=q % Wieso geht das nicht? %x=\thisrow{p}, y=\thisrow{q} % Wieso geht das nicht? % ] {\datatable}; \end{axis} \end{tikzpicture} \end{document} gefragt 18 Jan '18, 18:13 cis |
Die Styles Im Kontext von Du kannst allerdings eine symbolische Verbindung ausserhalb von pgfplots mit TeX bordmitteln herstellen, bspw mit Öffne in Overleaf
\documentclass[border=3pt, varwidth]{standalone} \usepackage{pgfplots} \pgfplotsset{width=7cm,compat=1.13} % Tabelle des Typs % x y p q \pgfplotstableread{ 1 2 2 5 1 3 7 1 8 2 3 1 9 5 3 6 }\datatable \def\p{2} \def\q{3} \begin{document} \begin{tikzpicture} \begin{axis}[ymin=0] \addplot table [ x=\p, y=\q % ] {\datatable}; \end{axis} \end{tikzpicture} \end{document} Hier bekommt beantwortet 20 Jan '18, 12:54 cfeuersaenger |