abc654321
02-01-2012, 12:44
Hallo!
Für meine Abschlussarbeit benötige ich ein diagramm, welches den börsengang der eex vom 04.10.2009 zeigt.
hier mein ansatz:
\documentclass[12pt,a4paper,twoside,halfparskip]{scrreprt}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{pgfplots} %Diagramme
\usepgfplotslibrary{dateplot} %Datum in Diagrammen
\pgfplotsset{compat=1.3} %Abstand Abszissenbeschriftung in Diagrammen
\begin{document}
\begin{figure}
\begin{tikzpicture}
\begin{axis}
[width=1.0\textwidth,height=0.3\textheight,
date coordinates in=x,
xticklabel={\day.\month.\year\\ \hour:\minute},
x tick label style={align=center},
xlabel={Datum / Uhrzeit},
ylabel={Preis pro MWh [€]},
date ZERO=2009-10-04, % Set near lowest date
ymax={100},
ymin={-600},
xmin={2009-10-04 00:30}, % A date with no time is assumed to have a time of 00:00
xmax={2009-10-04 23:30},
]
\addplot table [col sep=tab,trim cells=true,y=b]{boerse.txt};
\legend{Boersenkurs}
\end{axis}
\end{tikzpicture}
\caption{Rekordtiefpreis}
\label{Rekord}
\end{figure}
\end{document}
Datengrundlage ist die Datei boerse.txt (siehe Anhang)
Jetzt bekomme ich immer so ein doofes runaway argument. ich bin noch ziemlich neu in latex und kann mit den fehlermeldungen immer nicht sehr viel anfangen. wo könnte das problem liegen?
und zwei fragen die ich mit der doku jetzt auf die schnelle auch nicht lösen konnte:
-wofür brauche ich ein date zero?
-wofür steht der ausdruck trim cells=true?
der code basiert auf dem bsp aus der doku.
Vielen Dank!
Grüße
Simon
Für meine Abschlussarbeit benötige ich ein diagramm, welches den börsengang der eex vom 04.10.2009 zeigt.
hier mein ansatz:
\documentclass[12pt,a4paper,twoside,halfparskip]{scrreprt}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{pgfplots} %Diagramme
\usepgfplotslibrary{dateplot} %Datum in Diagrammen
\pgfplotsset{compat=1.3} %Abstand Abszissenbeschriftung in Diagrammen
\begin{document}
\begin{figure}
\begin{tikzpicture}
\begin{axis}
[width=1.0\textwidth,height=0.3\textheight,
date coordinates in=x,
xticklabel={\day.\month.\year\\ \hour:\minute},
x tick label style={align=center},
xlabel={Datum / Uhrzeit},
ylabel={Preis pro MWh [€]},
date ZERO=2009-10-04, % Set near lowest date
ymax={100},
ymin={-600},
xmin={2009-10-04 00:30}, % A date with no time is assumed to have a time of 00:00
xmax={2009-10-04 23:30},
]
\addplot table [col sep=tab,trim cells=true,y=b]{boerse.txt};
\legend{Boersenkurs}
\end{axis}
\end{tikzpicture}
\caption{Rekordtiefpreis}
\label{Rekord}
\end{figure}
\end{document}
Datengrundlage ist die Datei boerse.txt (siehe Anhang)
Jetzt bekomme ich immer so ein doofes runaway argument. ich bin noch ziemlich neu in latex und kann mit den fehlermeldungen immer nicht sehr viel anfangen. wo könnte das problem liegen?
und zwei fragen die ich mit der doku jetzt auf die schnelle auch nicht lösen konnte:
-wofür brauche ich ein date zero?
-wofür steht der ausdruck trim cells=true?
der code basiert auf dem bsp aus der doku.
Vielen Dank!
Grüße
Simon