Ich habe einen einfachen Plot mit dem pgfplots package: Open in writeLaTeX
\documentclass{article} \usepackage{pgfplots} \usepackage{filecontents} \begin{filecontents*}{data.txt} x y 0 0 10 20 20 25 30 22 40 40 50 32 60 47 70 42 80 50 90 52 100 60 \end{filecontents*} \begin{document} \begin{tikzpicture} \begin{axis} \addplot table {data.txt} \end{axis} \end{tikzpicture} \end{document} Jedoch erhalte ich die Fehlermeldung: Open in writeLaTeX
Runaway argument? \end {axis} \end {tikzpicture} \end {document} ! File ended while scanning use of \pgfplots@addplotimpl@table@fromfile. <inserted text> \par Was habe ich hier falsch gemacht? gefragt 06 Apr '14, 12:51 Felix |
Kaum geschrieben, schon selbst gefunden: es fehlt das Semikolon ; nach addplot, wie meistens bei TikZ muss die Zeile mit Semikolon abgeschlossen werden. Ist halt nur schwer an der Fehlermeldung zu erkennen. Lauffähig ist damit: Open in writeLaTeX
\documentclass{article} \usepackage{pgfplots} \usepackage{filecontents} \begin{filecontents*}{data.txt} x y 0 0 10 20 20 25 30 22 40 40 50 32 60 47 70 42 80 50 90 52 100 60 \end{filecontents*} \begin{document} \begin{tikzpicture} \begin{axis} \addplot table {data.txt}; \end{axis} \end{tikzpicture} \end{document} beantwortet 06 Apr '14, 12:55 Felix |